mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 06:24:25 +02:00
15 lines
280 B
YAML
15 lines
280 B
YAML
---
|
|
- name: Validate Nginx configuration
|
|
command: nginx -t
|
|
register: nginx_test
|
|
changed_when: false
|
|
failed_when: nginx_test.rc != 0
|
|
listen: restart nginx
|
|
|
|
- name: restart nginx
|
|
service:
|
|
name: nginx
|
|
state: restarted
|
|
enabled: yes
|
|
listen: restart nginx
|