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.
40 lines
1.1 KiB
Django/Jinja
40 lines
1.1 KiB
Django/Jinja
[test-targets]
|
|
{% for c in containers %}
|
|
{{ c.name }} ansible_host={{ c.hostname }} ansible_port={{ c.port }} ansible_python_interpreter={{ c.python_path }}
|
|
{% endfor %}
|
|
|
|
[test-targets:vars]
|
|
ansible_user=mitogen__has_sudo_nopw
|
|
ansible_password=has_sudo_nopw_password
|
|
|
|
{% for distro, hostnames in distros | dictsort %}
|
|
[{{ distro }}]
|
|
{% for hostname in hostnames %}
|
|
{{ hostname }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% for family, hostnames in families | dictsort %}
|
|
[{{ family }}]
|
|
{% for hostname in hostnames %}
|
|
{{ hostname }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
[linux:children]
|
|
test-targets
|
|
|
|
[linux_containers:children]
|
|
test-targets
|
|
|
|
[issue905]
|
|
{% for c in containers[:1] %}
|
|
ssh-common-args ansible_host={{ c.hostname }} ansible_port={{ c.port }} ansible_python_interpreter={{ c.python_path }}
|
|
{% endfor %}
|
|
|
|
[issue905:vars]
|
|
ansible_user=mitogen__has_sudo_nopw
|
|
ansible_password=has_sudo_nopw_password
|
|
ansible_ssh_common_args=-o PermitLocalCommand=yes -o LocalCommand="touch {{ '{{' }} ssh_args_canary_file {{ '}}' }}"
|
|
ssh_args_canary_file=/tmp/ssh_args_{{ '{{' }} inventory_hostname {{ '}}' }}
|