fe9696be52
* Fix `ansible -K` become_pass regression
Change:
- This fixes a breaking change introduced in
2165f9ac40
Test Plan:
- Local VM for now, with plans to add an integration test for -K going
forward.
Tickets:
Refs #69244
27 lines
666 B
Python
27 lines
666 B
Python
#!/usr/bin/env python
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# Make coding more python3-ish
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import sys
|
|
|
|
import pexpect
|
|
|
|
os.environ['ANSIBLE_NOCOLOR'] = '1'
|
|
|
|
out = pexpect.run(
|
|
'ansible -c ssh -i localhost, -u cliuser1 -e ansible_python_interpreter={0} '
|
|
'-m command -a whoami -Kkb --become-user cliuser2 localhost'.format(sys.argv[1]),
|
|
events={
|
|
'SSH password:': 'secretpassword\n',
|
|
'BECOME password': 'secretpassword\n',
|
|
},
|
|
timeout=10
|
|
)
|
|
|
|
print(out)
|
|
|
|
assert b'cliuser2' in out
|