Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a few typos in the become documentation #10749

Merged
merged 1 commit into from
Apr 16, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions docsite/rst/become.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,24 @@ become_user
equivalent to adding sudo_user: or su_user: to a play or task

become_method
at play or task level overrides the default method set in ansibile.cfg
at play or task level overrides the default method set in ansible.cfg


New ansible_ variables
----------------------
Each allows you to set an option per group and/or host

ansible_become
equivalent to ansible_sudo or ansbile_su, allows to force privilege escalation
equivalent to ansible_sudo or ansible_su, allows to force privilege escalation

ansible_become_method
allows to set privilege escalation method

ansible_become_user
equivalent to ansible_sudo_user or ansbile_su_user, allows to set the user you become through privilege escalation
equivalent to ansible_sudo_user or ansible_su_user, allows to set the user you become through privilege escalation

ansible_become_pass
equivalent to ansible_sudo_pass or ansbile_su_pass, allows you to set the privilege escalation password
equivalent to ansible_sudo_pass or ansible_su_pass, allows you to set the privilege escalation password


New command line options
Expand All @@ -50,7 +50,7 @@ New command line options
ask for privilege escalation password

-b, --become
run operations with become (no passorwd implied)
run operations with become (no password implied)

--become-method=BECOME_METHOD
privilege escalation method to use (default=sudo),
Expand Down