ansible-collection-nextcloud/roles/nextcloud/handlers/main.yml
s3lph 81576dc751
Some checks failed
Ansible Lint / build (push) Successful in 1m7s
Ansible Galaxy / deploy (push) Failing after 1m47s
fix: ansible-lint
2024-04-14 19:56:19 +02:00

16 lines
307 B
YAML

---
- name: restart php-fpm
ansible.builtin.service:
name: "php{{ php_version }}-fpm.service"
state: restarted
- name: restart apache2
ansible.builtin.service:
name: apache2
state: restarted
- name: restart redis
ansible.builtin.service:
name: redis-server
state: restarted