servers/roles/dokuwiki/handlers/main.yml

12 lines
252 B
YAML
Raw Normal View History

- name: reload nginx
service:
name: nginx
state: reloaded
when: "'handler' not in ansible_skip_tags"
2024-07-05 09:04:28 +00:00
- name: restart php-fpm
service:
name: 'php-fpm{{ php_version }}'
state: restarted
when: "'handler' not in ansible_skip_tags"