mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-27 18:51:09 +02:00
13 lines
348 B
YAML
13 lines
348 B
YAML
---
|
|
- name: Validate OpenResty configuration
|
|
command: >
|
|
docker exec {{ openresty_container }} openresty -t -q
|
|
register: openresty_test
|
|
changed_when: false
|
|
failed_when: openresty_test.rc != 0
|
|
listen: restart openresty
|
|
|
|
- name: Restart OpenResty container
|
|
command: docker restart {{ openresty_container }}
|
|
listen: restart openresty
|