mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
Added assurance that config directories exist
This commit is contained in:
parent
a36d92bebe
commit
78efbc1251
@ -23,6 +23,9 @@
|
||||
notify: restart webserver
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Assures {{ php_conf_path }} directory exists
|
||||
file: path={{ php_conf_path }} state=directory
|
||||
|
||||
- name: Place PHP configuration file in place.
|
||||
template: >
|
||||
src=php.ini.j2
|
||||
@ -30,6 +33,9 @@
|
||||
owner=root group=root mode=644
|
||||
notify: restart webserver
|
||||
|
||||
- name: Assures {{ php_extension_conf_path }} directory exists
|
||||
file: path={{ php_extension_conf_path }} state=directory
|
||||
|
||||
- name: Place APC configuration file in place.
|
||||
template: >
|
||||
src=apc.ini.j2
|
||||
|
Loading…
Reference in New Issue
Block a user