Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix implicit octal values in main.yml #60

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
backup: true
dest: "{{ __postgresql_hba_conf_file }}"
src: pg_hba.conf.j2
mode: 0600
mode: "0600"
owner: postgres
group: postgres
when: postgresql_pg_hba_conf is defined
Expand All @@ -105,7 +105,7 @@
file:
path: /etc/postgresql
state: directory
mode: 0755
mode: "0755"

- name: Link generated conf file with server one
lineinfile:
Expand All @@ -120,7 +120,7 @@
backup: true
dest: "{{ __postgresql_internal_conf_file }}"
src: postgresql-internal.conf.j2
mode: 0600
mode: "0600"
owner: postgres
group: postgres

Expand All @@ -133,7 +133,7 @@
backup: true
dest: "{{ __postgresql_conf_file }}"
src: postgresql.conf.j2
mode: 0600
mode: "0600"
owner: postgres
group: postgres

Expand Down
Loading