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.
32 lines
742 B
YAML
32 lines
742 B
YAML
# issue #581: ensure mitogen_mask_remote_name is respected.
|
|
|
|
- name: integration/context_service/remote_name.yml
|
|
hosts: test-targets[0]
|
|
any_errors_fatal: true
|
|
tasks:
|
|
- meta: end_play
|
|
when: not is_mitogen
|
|
|
|
# Too much hassle to make this work for OSX
|
|
- meta: end_play
|
|
when: ansible_system != 'Linux'
|
|
|
|
- shell: 'cat /proc/$PPID/cmdline | tr \\0 \\n'
|
|
register: out
|
|
- debug: var=out
|
|
|
|
- assert:
|
|
that:
|
|
- out.stdout is match('.*python([0-9.]+)?\(mitogen:[a-z]+@[^:]+:[0-9]+\)')
|
|
|
|
- shell: 'cat /proc/$PPID/cmdline | tr \\0 \\n'
|
|
register: out
|
|
vars:
|
|
mitogen_mask_remote_name: true
|
|
- debug: var=out
|
|
|
|
- assert:
|
|
that:
|
|
- out.stdout is match('.*python([0-9.]+)?\(mitogen:ansible\)')
|
|
|