Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
f5471186
Commit
f5471186
authored
May 04, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v2_final' of
https://github.com/ansible/ansible
into v2_final
parents
8f504dac
124a0d35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
lib/ansible/cli/__init__.py
+2
-2
lib/ansible/executor/connection_info.py
+1
-1
No files found.
lib/ansible/cli/__init__.py
View file @
f5471186
...
...
@@ -245,9 +245,9 @@ class CLI(object):
if
runas_opts
:
# priv user defaults to root later on to enable detecting when this option was given here
parser
.
add_option
(
'-K'
,
'--ask-sudo-pass'
,
default
=
False
,
dest
=
'ask_sudo_pass'
,
action
=
'store_true'
,
parser
.
add_option
(
'-K'
,
'--ask-sudo-pass'
,
default
=
C
.
DEFAULT_ASK_SUDO_PASS
,
dest
=
'ask_sudo_pass'
,
action
=
'store_true'
,
help
=
'ask for sudo password (deprecated, use become)'
)
parser
.
add_option
(
'--ask-su-pass'
,
default
=
False
,
dest
=
'ask_su_pass'
,
action
=
'store_true'
,
parser
.
add_option
(
'--ask-su-pass'
,
default
=
C
.
DEFAULT_ASK_SU_PASS
,
dest
=
'ask_su_pass'
,
action
=
'store_true'
,
help
=
'ask for su password (deprecated, use become)'
)
parser
.
add_option
(
"-s"
,
"--sudo"
,
default
=
C
.
DEFAULT_SUDO
,
action
=
"store_true"
,
dest
=
'sudo'
,
help
=
"run operations with sudo (nopasswd) (deprecated, use become)"
)
...
...
lib/ansible/executor/connection_info.py
View file @
f5471186
...
...
@@ -226,7 +226,7 @@ class ConnectionInformation:
elif
self
.
become_method
==
'pbrun'
:
exe
=
become_settings
.
get
(
'pbrun_exe'
,
'pbrun'
)
flags
=
become_settings
.
get
(
'pbrun_flags'
,
''
)
becomecmd
=
'
%
s -b -l
%
s -u
%
s
"
%
s"
'
%
(
exe
,
flags
,
self
.
become_user
,
success_cmd
)
becomecmd
=
'
%
s -b -l
%
s -u
%
s
%
s
'
%
(
exe
,
flags
,
self
.
become_user
,
success_cmd
)
elif
self
.
become_method
==
'pfexec'
:
exe
=
become_settings
.
get
(
'pfexec_exe'
,
'pbrun'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment