initial commit

This commit is contained in:
Ludovic Cartier
2024-12-17 17:20:50 +01:00
parent a24d032a03
commit 4c65e9c8b4
17 changed files with 315 additions and 2 deletions

12
handlers/main.yml Normal file
View File

@ -0,0 +1,12 @@
---
- name: 'nginx reload'
systemd:
name: nginx
state: reloaded
tags: ['nginx']
- name: 'nginx restart'
systemd:
name: nginx
state: restarted
tags: ['nginx']