Make sure php_fpm_pool_user and _group are updated in config.

This commit is contained in:
Jeff Geerling 2016-06-10 22:22:47 -05:00
parent d4af9e1ae6
commit 1335099d77
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@
line: "{{ item.line }}"
state: present
with_items:
- regexp: "^user.?=.+$"
line: "user = {{ php_fpm_pool_user }}"
- regexp: "^group.?=.+$"
line: "group = {{ php_fpm_pool_group }}"
- regexp: "^listen.?=.+$"
line: "listen = {{ php_fpm_listen }}"
- regexp: '^listen\.allowed_clients.?=.+$'