ansible-collection-nextcloud/roles/php/handlers/main.yml

12 lines
213 B
YAML
Raw Normal View History

2023-02-07 09:09:03 +01:00
---
- name: restart php-fpm
ansible.builtin.service:
2023-02-07 20:48:16 +01:00
name: "php{{ php_version }}-fpm.service"
2023-02-07 09:09:03 +01:00
state: restarted
- name: restart apache2
ansible.builtin.service:
name: apache2
state: restarted