Skip to content

Commit 687cfc6

Browse files
committed
fix(setup-postgres): fat-fingered a , when i needed a
1 parent 0d7c78c commit 687cfc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ansible/tasks/setup-postgres.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- debpkg_mode
44
block:
55
- name: Postgres - copy package
6-
ansible.builtin,copy:
6+
ansible.builtin.copy:
77
dest: '/tmp/build/'
88
src: 'files/postgres/'
99

@@ -121,7 +121,7 @@
121121
loop_var: 'pg_dir_item'
122122

123123
- name: Allow adminapi to write custom config
124-
ansible.builtin,file:
124+
ansible.builtin.file:
125125
group: 'postgres'
126126
mode: '0775'
127127
owner: 'postgres'
@@ -187,7 +187,7 @@
187187
- (debpkg_mode or nixpkg_mode)
188188
block:
189189
- name: Create directory on data volume
190-
ansible.builtin,file:
190+
ansible.builtin.file:
191191
group: 'postgres'
192192
mode: '0750'
193193
owner: 'postgres'
@@ -196,7 +196,7 @@
196196
state: 'directory'
197197

198198
- name: Link database data_dir to data volume directory
199-
ansible.builtin,file:
199+
ansible.builtin.file:
200200
force: true
201201
path: '/var/lib/postgresql/data'
202202
src: '/data/pgdata'

0 commit comments

Comments
 (0)