Skip to content
Snippets Groups Projects
Commit ae51bc19 authored by jurgenhaas's avatar jurgenhaas
Browse files

Update to Ansible 2.2.1.0 and adjust all file mode settings to provide them as strings

parent 6aeac6dd
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/{{ item }}.ini
owner=root
group=root
mode=0644
mode='644'
with_items:
- oci8
- pdo_oci
......
......@@ -5,7 +5,7 @@
apt_repository:
repo='{{ item }}'
state='present'
mode=644
mode='644'
with_items: '{{ php_repositories }}'
- name: "PHP | Install required packages."
......@@ -37,7 +37,7 @@
state=directory
owner=root
group=root
mode=0755
mode='755'
- name: "PHP | Configuration file, php.ini"
template:
......@@ -45,7 +45,7 @@
dest=/etc/{{ php_base_dir }}/apache2/php.ini
owner=root
group=root
mode=0644
mode='644'
notify:
- "Apache | Restart Apache"
......@@ -58,7 +58,7 @@
dest=/etc/apache2/mods-available/fcgid.conf
owner=root
group=root
mode=0644
mode='644'
notify:
- "Apache | Restart Apache"
......@@ -68,7 +68,7 @@
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/opcache.ini
owner=root
group=root
mode=0644
mode='644'
notify:
- "Apache | Restart Apache"
......@@ -132,7 +132,7 @@
state=directory
owner=root
group=root
mode=0755
mode='755'
- name: "PHP | ImageMagick Policy File"
template:
......@@ -140,7 +140,7 @@
dest=/etc/ImageMagick/policy.xml
owner=root
group=root
mode=0644
mode='644'
- block:
- set_fact:
......@@ -158,5 +158,5 @@
dest=/etc/logrotate.d/php{{ phpLogRotatePrefix }}-fpm
owner=root
group=root
mode=644
mode='644'
tags: 'logrotate'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment