Puppet Operations

puppet.agent

Stateless operation

This operation will always execute commands and is not idempotent.

Run puppet agent

puppet.agent(server=None, port=None)
  • 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:

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],
)