mirror of https://github.com/ansible/ansible.git
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.
20 lines
396 B
YAML
20 lines
396 B
YAML
6 years ago
|
- name: Set the value of AWX_PROOT_SHOW_PATHS
|
||
|
tower_settings:
|
||
|
name: "AWX_PROOT_SHOW_PATHS"
|
||
|
value: "'/var/lib/awx/projects/', '/tmp'"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result is changed"
|
||
|
|
||
|
- name: Set the value of AWX_PROOT_BASE_PATH
|
||
|
tower_settings:
|
||
|
name: AWX_PROOT_BASE_PATH
|
||
|
value: "/tmp"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.value == '/tmp'"
|