![]() Until Ansible 2.9 it looks like ansible_become_password had higher priority. From Ansible 2.10 ansible_become_pass has higher priority [1]. Mitogen was not respecting this. I may need to rework this further, instatiating the become plugin may have slowed down execution. [1] Based on testing with ``` [ubuntus] become-pass-pass ansible_become_pass=1234 become-pass-password ansible_become_password=1234 become-pass-both ansible_become_password=wrong ansible_become_pass=1234 [ubuntus:vars] ansible_host=ubuntu2004.local ansible_user=ubuntu ``` ``` - hosts: ubuntus gather_facts: false become: true tasks: - ping: ``` |
||
---|---|---|
.. | ||
README.md | ||
all.yml | ||
become.yml | ||
become_method.yml | ||
become_pass.yml | ||
become_user.yml | ||
password.yml | ||
port.yml | ||
python_path.yml | ||
remote_addr.yml | ||
remote_user.yml | ||
transport.yml | ||
transport__smart.yml |
README.md
Tests for correct selection of connection variables.
This directory is a placeholder for a work-in-progress test set that tries
every combination of the variables extracted via transport_config.py
.
In the meantime, it has ad-hoc scripts for bugs already encountered.