mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
Adds docker installation steps (#15)
This commit is contained in:
committed by
GitHub
parent
c1ffa6e5d9
commit
e2a0fd7b0b
15
installer/check_vars/tasks/check_docker.yml
Normal file
15
installer/check_vars/tasks/check_docker.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
# check_docker.yml
|
||||
---
|
||||
- name: postgres_data_dir should be defined
|
||||
assert:
|
||||
that:
|
||||
- postgres_data_dir is defined and postgres_data_dir != ''
|
||||
msg: "Set the value of 'postgres_data_dir' in the inventory file."
|
||||
when: pg_hostname is not defined or pg_hostname == ''
|
||||
|
||||
- name: host_port should be defined
|
||||
assert:
|
||||
that:
|
||||
- host_port is defined and host_port != ''
|
||||
msg: "Set the value of 'host_port' in the inventory file."
|
||||
|
||||
Reference in New Issue
Block a user