11 lines
209 B
YAML
11 lines
209 B
YAML
---
|
|
# For Debian 8
|
|
- name: restart php5-fpm
|
|
service: name=php5-fpm state=restarted
|
|
|
|
# For Ubuntu 16.04 and Debian 9
|
|
- name: reload php7.0-fpm
|
|
systemd: name=php7.0-fpm state=reloaded
|
|
|
|
# vim: set ts=2 sw=2:
|