1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ---
- - name: Initialize variables
- set_fact:
- awx_status: false
- tags: install
- - name: Check awx_task status on the machine
- docker_container_info:
- name: awx_task
- register: awx_task_result
- tags: install
- vars:
- ansible_python_interpreter: "/usr/bin/python3"
- - name: Check awx_web status on the machine
- docker_container_info:
- name: awx_web
- register: awx_web_result
- tags: install
- vars:
- ansible_python_interpreter: "/usr/bin/python3"
- - name: Update awx status
- set_fact:
- awx_status: true
- when:
- - awx_task_result.exists
- - awx_web_result.exists
- tags: install
|