community.general.pbrun become – PowerBroker run

Note

This become plugin is part of the community.general collection (version 10.7.3).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.general.

To use it in a playbook, specify: community.general.pbrun.

Synopsis

  • This become plugins allows your remote/login user to execute commands as another user using the pbrun utility.

Parameters

Parameter

Comments

become_exe

string

pbrun executable.

Default: "pbrun"

Configuration:

  • INI entries:

    [privilege_escalation]
    become_exe = pbrun
    
    [pbrun_become_plugin]
    executable = pbrun
    
  • Environment variable: ANSIBLE_BECOME_EXE

  • Environment variable: ANSIBLE_PBRUN_EXE

  • Variable: ansible_become_exe

  • Variable: ansible_pbrun_exe

become_flags

string

Options to pass to pbrun.

Default: ""

Configuration:

  • INI entries:

    [privilege_escalation]
    become_flags = ""
    
    [pbrun_become_plugin]
    flags = ""
    
  • Environment variable: ANSIBLE_BECOME_FLAGS

  • Environment variable: ANSIBLE_PBRUN_FLAGS

  • Variable: ansible_become_flags

  • Variable: ansible_pbrun_flags

become_pass

string

Password for pbrun.

Configuration:

  • INI entry:

    [pbrun_become_plugin]
    password = VALUE
    
  • Environment variable: ANSIBLE_BECOME_PASS

  • Environment variable: ANSIBLE_PBRUN_PASS

  • Variable: ansible_become_password

  • Variable: ansible_become_pass

  • Variable: ansible_pbrun_pass

become_user

string

User you ‘become’ to execute the task.

Default: ""

Configuration:

  • INI entries:

    [privilege_escalation]
    become_user = ""
    
    [pbrun_become_plugin]
    user = ""
    
  • Environment variable: ANSIBLE_BECOME_USER

  • Environment variable: ANSIBLE_PBRUN_USER

  • Variable: ansible_become_user

  • Variable: ansible_pbrun_user

wrap_exe

boolean

Toggle to wrap the command pbrun calls in shell -c or not.

Choices:

  • false ← (default)

  • true

Configuration:

  • INI entry:

    [pbrun_become_plugin]
    wrap_execution = false
    
  • Environment variable: ANSIBLE_PBRUN_WRAP_EXECUTION

  • Variable: ansible_pbrun_wrap_execution

Note

Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list).

Authors

  • Ansible Core Team