Skip to content
Snippets Groups Projects
Verified Commit 3efee5b2 authored by Chris Croome's avatar Chris Croome
Browse files

quote octal mode

parent b2f7c6d3
No related branches found
No related tags found
1 merge request!1Merge Sury
Pipeline #28315 failed
......@@ -15,7 +15,7 @@
ansible.builtin.file:
path: /etc/apt/keyrings
state: directory
mode: 0755
mode: "0755"
owner: root
group: root
......@@ -24,7 +24,7 @@
url: "{{ php_gpg_url }}"
checksum: "{{ php_gpg_checksum }}"
dest: /etc/apt/keyrings/php.gpg
mode: 0644
mode: "0644"
owner: root
group: root
......@@ -66,7 +66,7 @@
ansible.builtin.template:
src: php.sources.j2
dest: /etc/apt/sources.list.d/php.sources
mode: 0644
mode: "0644"
owner: root
group: root
register: php_sources
......@@ -75,7 +75,7 @@
ansible.builtin.template:
src: php.pref.j2
dest: /etc/apt/preferences.d/php.pref
mode: 0644
mode: "0644"
owner: root
group: root
register: php_preferences
......
......@@ -167,7 +167,7 @@
ansible.builtin.file:
path: "{{ php_dir }}"
state: directory
mode: 0755
mode: "0755"
owner: root
group: root
loop: "{{ php_conf_dirs_create }}"
......
......@@ -34,7 +34,7 @@
regex: "{{ php_conf_variable_regex }}"
state: present
backrefs: true
mode: 0644
mode: "0644"
owner: root
group: root
when: php_conf_variable_pair.value != php_conf_file_existing_vars | community.general.json_query(php_conf_variable_json_query)
......@@ -53,7 +53,7 @@
option: "{{ php_conf_variable_pair.key }}"
value: "{{ php_conf_variable_pair.value }}"
no_extra_spaces: false
mode: 0644
mode: "0644"
owner: root
group: root
when: php_conf_variable_pair.value != php_conf_file_existing_vars | community.general.json_query(php_conf_variable_json_query)
......
......@@ -50,7 +50,7 @@
src: "{{ php_conf_file }}"
dest: "{{ php_conf_file_backup }}"
remote_src: true
mode: 0644
mode: "0644"
owner: root
group: root
when: php_conf_file in php_conf_files_existing
......@@ -59,7 +59,7 @@
ansible.builtin.template:
src: php.j2
dest: "{{ php_conf_file }}"
mode: 0644
mode: "0644"
owner: root
group: root
register: php_conf_file_templated
......@@ -86,7 +86,7 @@
src: "{{ php_conf_file }}"
dest: "{{ php_conf_file_backup }}.broken"
remote_src: true
mode: 0644
mode: "0644"
owner: root
group: root
......@@ -100,7 +100,7 @@
src: "{{ php_conf_file_backup }}"
dest: "{{ php_conf_file }}"
remote_src: true
mode: 0644
mode: "0644"
owner: root
group: root
when: php_conf_file_backup_path.stat.exists | bool
......
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