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.
29 lines
645 B
YAML
29 lines
645 B
YAML
|
|
- hosts: test-targets[0]
|
|
tasks:
|
|
- mitogen_action_script:
|
|
script: |
|
|
import glob
|
|
result['sockets'] = glob.glob('/tmp/mitogen_unix*.sock')
|
|
register: socks
|
|
|
|
- shell: >
|
|
ANSIBLE_STRATEGY=mitogen_linear
|
|
ANSIBLE_SSH_ARGS=""
|
|
ansible -m shell -c local -a whoami -i "{{MITOGEN_INVENTORY_FILE}}" test-targets
|
|
args:
|
|
chdir: ../..
|
|
register: out
|
|
connection: local
|
|
when: is_mitogen
|
|
|
|
- mitogen_action_script:
|
|
script: |
|
|
import glob
|
|
result['sockets'] = glob.glob('/tmp/mitogen_unix*.sock')
|
|
register: socks2
|
|
|
|
- assert_equal:
|
|
left: socks
|
|
right: socks2
|