ansible-roles/lxc-php/handlers/main.yml
Tristan PILAT f70be6d0df Swith to buster for PHP 7.3
- Amend lxc role default variable examples to include buster
- Include opensmtpd configuration to replace ssmtp into the container
- Delete Sury related tasks
- Change packages names when installing php in the php73 container since
we are not using Sury anymore
2019-09-18 12:21:02 +02:00

13 lines
362 B
YAML

---
- name: Reload php56-fpm
command: "lxc-attach -n php56 -- systemctl reload php5-fpm"
- name: Reload php70-fpm
command: "lxc-attach -n php70 -- systemctl reload php7.0-fpm"
- name: Reload php73-fpm
command: "lxc-attach -n php73 -- systemctl reload php7.3-fpm"
- name: Restart opensmtpd
command: "lxc-attach -n php73 -- systemctl restart opensmtpd"