mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
committed by
Adrian Likins
parent
ad94a3a6a2
commit
afa82be019
@@ -323,11 +323,11 @@ class CLI(with_metaclass(ABCMeta, object)):
|
||||
try:
|
||||
if op.ask_pass:
|
||||
sshpass = getpass.getpass(prompt="SSH password: ")
|
||||
become_prompt = "%s password[defaults to SSH password]: " % op.become_method.upper()
|
||||
become_prompt = "BECOME password[defaults to SSH password]: "
|
||||
if sshpass:
|
||||
sshpass = to_bytes(sshpass, errors='strict', nonstring='simplerepr')
|
||||
else:
|
||||
become_prompt = "%s password: " % op.become_method.upper()
|
||||
become_prompt = "BECOME password: "
|
||||
|
||||
if op.become_ask_pass:
|
||||
becomepass = getpass.getpass(prompt=become_prompt)
|
||||
|
||||
Reference in New Issue
Block a user