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 @@ ...@@ -11,7 +11,7 @@
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/{{ item }}.ini dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/{{ item }}.ini
owner=root owner=root
group=root group=root
mode=0644 mode='644'
with_items: with_items:
- oci8 - oci8
- pdo_oci - pdo_oci
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
apt_repository: apt_repository:
repo='{{ item }}' repo='{{ item }}'
state='present' state='present'
mode=644 mode='644'
with_items: '{{ php_repositories }}' with_items: '{{ php_repositories }}'
- name: "PHP | Install required packages." - name: "PHP | Install required packages."
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
state=directory state=directory
owner=root owner=root
group=root group=root
mode=0755 mode='755'
- name: "PHP | Configuration file, php.ini" - name: "PHP | Configuration file, php.ini"
template: template:
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
dest=/etc/{{ php_base_dir }}/apache2/php.ini dest=/etc/{{ php_base_dir }}/apache2/php.ini
owner=root owner=root
group=root group=root
mode=0644 mode='644'
notify: notify:
- "Apache | Restart Apache" - "Apache | Restart Apache"
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
dest=/etc/apache2/mods-available/fcgid.conf dest=/etc/apache2/mods-available/fcgid.conf
owner=root owner=root
group=root group=root
mode=0644 mode='644'
notify: notify:
- "Apache | Restart Apache" - "Apache | Restart Apache"
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/opcache.ini dest=/etc/{{ php_base_dir }}/{{ php_conf_dir }}/opcache.ini
owner=root owner=root
group=root group=root
mode=0644 mode='644'
notify: notify:
- "Apache | Restart Apache" - "Apache | Restart Apache"
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
state=directory state=directory
owner=root owner=root
group=root group=root
mode=0755 mode='755'
- name: "PHP | ImageMagick Policy File" - name: "PHP | ImageMagick Policy File"
template: template:
...@@ -140,7 +140,7 @@ ...@@ -140,7 +140,7 @@
dest=/etc/ImageMagick/policy.xml dest=/etc/ImageMagick/policy.xml
owner=root owner=root
group=root group=root
mode=0644 mode='644'
- block: - block:
- set_fact: - set_fact:
...@@ -158,5 +158,5 @@ ...@@ -158,5 +158,5 @@
dest=/etc/logrotate.d/php{{ phpLogRotatePrefix }}-fpm dest=/etc/logrotate.d/php{{ phpLogRotatePrefix }}-fpm
owner=root owner=root
group=root group=root
mode=644 mode='644'
tags: 'logrotate' 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