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

better sudo/su deprecation on config entries #36074

Merged
merged 4 commits into from
Feb 15, 2018
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
18 changes: 9 additions & 9 deletions lib/ansible/config/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ DEFAULT_ASK_SUDO_PASS:
name: Ask for the sudo password
default: False
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_ask_pass.
version: "2.8"
alternatives: become
description:
Expand All @@ -373,7 +373,7 @@ DEFAULT_ASK_SU_PASS:
name: Ask for the su password
default: False
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_ask_pass.
version: "2.8"
alternatives: become
description:
Expand Down Expand Up @@ -988,7 +988,7 @@ DEFAULT_SU:
DEFAULT_SUDO:
default: False
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework
version: "2.8"
alternatives: become
description: 'Toggle the use of "sudo" for tasks.'
Expand All @@ -1000,7 +1000,7 @@ DEFAULT_SUDO_EXE:
name: sudo executable
default: sudo
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_exe.
version: "2.8"
alternatives: become
description: 'specify an "sudo" executable, otherwise it relies on PATH.'
Expand All @@ -1011,7 +1011,7 @@ DEFAULT_SUDO_FLAGS:
name: sudo flags
default: '-H -S -n'
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_flags.
version: "2.8"
alternatives: become
description: 'Flags to pass to "sudo"'
Expand All @@ -1022,7 +1022,7 @@ DEFAULT_SUDO_USER:
name: sudo user
default:
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_user.
version: "2.8"
alternatives: become
description: 'User you become when using "sudo", leaving it blank will use the default configured on the target (normally root)'
Expand All @@ -1033,7 +1033,7 @@ DEFAULT_SU_EXE:
name: su executable
default: su
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_exe.
version: "2.8"
alternatives: become
description: 'specify an "su" executable, otherwise it relies on PATH.'
Expand All @@ -1044,7 +1044,7 @@ DEFAULT_SU_FLAGS:
name: su flags
default: ''
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_flags.
version: "2.8"
alternatives: become
description: 'Flags to pass to su'
Expand All @@ -1059,7 +1059,7 @@ DEFAULT_SU_USER:
ini:
- {key: su_user, section: defaults}
deprecated:
why: In favor of become which is a generic framework
why: In favor of Ansible Become, which is a generic framework. See become_user.
version: "2.8"
alternatives: become
DEFAULT_SYSLOG_FACILITY:
Expand Down