Skip to content

Commit f72fb3e

Browse files
HVSharma12richm
authored andcommitted
ci: Fix implicit octal values in main.yml
1 parent aefb0aa commit f72fb3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tasks/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
backup: true
9696
dest: "{{ __postgresql_hba_conf_file }}"
9797
src: pg_hba.conf.j2
98-
mode: 0600
98+
mode: "0600"
9999
owner: postgres
100100
group: postgres
101101
when: postgresql_pg_hba_conf is defined
@@ -105,7 +105,7 @@
105105
file:
106106
path: /etc/postgresql
107107
state: directory
108-
mode: 0755
108+
mode: "0755"
109109

110110
- name: Link generated conf file with server one
111111
lineinfile:
@@ -120,7 +120,7 @@
120120
backup: true
121121
dest: "{{ __postgresql_internal_conf_file }}"
122122
src: postgresql-internal.conf.j2
123-
mode: 0600
123+
mode: "0600"
124124
owner: postgres
125125
group: postgres
126126

@@ -133,7 +133,7 @@
133133
backup: true
134134
dest: "{{ __postgresql_conf_file }}"
135135
src: postgresql.conf.j2
136-
mode: 0600
136+
mode: "0600"
137137
owner: postgres
138138
group: postgres
139139

0 commit comments

Comments
 (0)