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.
mitogen/ansible_mitogen
Alex Willmer f1503874de ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence
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
..
compat ansible: create stub __init__.py for sdist. 5 years ago
plugins ansible_mitogen: Allow mitogen_fetch to bypass slurp module 2 years ago
__init__.py ansible: restructure to avoid intermediate imports 6 years ago
affinity.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
connection.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
loaders.py ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence 2 years ago
logging.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
mixins.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
module_finder.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
parsing.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
planner.py Add ansible.builtin.dnf to ALWAYS_FORK_MODULES 2 years ago
process.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
runner.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
services.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
strategy.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
target.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago
transport_config.py ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence 2 years ago
utils.py ansible_mitogen: Standardise __future__ imports to match Ansible 2 years ago