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
YAML
40 lines
1.1 KiB
YAML
# issue #409.
|
|
# setns is hard -- it wants to do superuser syscalls, so we must run it in a
|
|
# child Ansible via sudo. But that only works if sudo works.
|
|
|
|
- name: integration/stub_connections/setns_lxd.yml
|
|
hosts: test-targets
|
|
gather_facts: false
|
|
any_errors_fatal: false
|
|
connection: local
|
|
tasks:
|
|
- include_tasks: ../_mitogen_only.yml
|
|
- include_tasks: _end_play_if_not_sudo_linux.yml
|
|
|
|
- name: Run ansible stub-lxc.py
|
|
environment:
|
|
ANSIBLE_VERBOSITY: "{{ ansible_verbosity }}"
|
|
command: |
|
|
sudo -nE "{{lookup('env', 'VIRTUAL_ENV')}}/bin/ansible"
|
|
-i localhost,
|
|
-c setns
|
|
-e mitogen_kind=lxd
|
|
-e ansible_python_interpreter=python
|
|
-e mitogen_lxc_path={{git_basedir}}/tests/data/stubs/stub-lxc.py
|
|
-m shell
|
|
-a "echo hi"
|
|
-u root
|
|
localhost
|
|
args:
|
|
chdir: ../..
|
|
warn: "{{ False if ansible_version.full is version('2.10', '<=', strict=True) else omit }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that: result.rc == 0
|
|
fail_msg: |
|
|
result={{ result }}
|
|
tags:
|
|
- mitogen_only
|
|
- sens_lxd
|