You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
f1503874de
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: ``` |
2 years ago | |
---|---|---|
.. | ||
README.md | 6 years ago | |
all.yml | 3 years ago | |
become.yml | 3 years ago | |
become_method.yml | 2 years ago | |
become_pass.yml | 2 years ago | |
become_user.yml | 2 years ago | |
password.yml | 6 years ago | |
port.yml | 2 years ago | |
python_path.yml | 5 years ago | |
remote_addr.yml | 6 years ago | |
remote_user.yml | 2 years ago | |
transport.yml | 6 years ago | |
transport__smart.yml | 2 years ago |
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.