puppet Operations¶
puppet.agent¶
Stateless operation
This operation will always execute commands and is not idempotent.
Run puppet agent
- server: master server URL
- port: puppet master port
Note: Either 'USE_SUDO_LOGIN=True' or 'USE_SU_LOGIN=True'
for puppet.agent() as puppet is added to the path in
the .bash_profile.
Example:
from pyinfra.operations import puppet
puppet.agent()
# We also expect a return code of:
# 0=no changes or 2=changes applied
puppet.agent(
name="Run the puppet agent",
success_exit_codes=[0, 2],
)
Global arguments
This operation also inherits all global arguments.