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.
36 lines
918 B
YAML
36 lines
918 B
YAML
- name: integration/process/unix_socket_cleanup.yml
|
|
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="-o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa"
|
|
ANSIBLE_VERBOSITY="{{ ansible_verbosity }}"
|
|
ansible -m shell -c local -a whoami
|
|
{% for inv in ansible_inventory_sources %}
|
|
-i "{{ inv }}"
|
|
{% endfor %}
|
|
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
|
|
tags:
|
|
- custom_python_new_style_module
|