Skip to content

Commit 762629d

Browse files
committed
fix(setup-pgbouncer): do not quote things you do not want to be strings, doug. it does not work well
1 parent 47ab241 commit 762629d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ansible/tasks/setup-pgbouncer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
shell: '/usr/sbin/nolign'
5151
state: 'present'
5252

53-
- name: Create PgBouncer directories if they does not exist
53+
- name: Create PgBouncer directories if they do not exist
5454
ansible.builtin.file:
5555
group: 'pgbouncer'
5656
mode: "{{ pgbouncer_dir_item['mode'] }}"
@@ -60,8 +60,8 @@
6060
loop_control:
6161
loop_var: 'pgbouncer_dir_item'
6262
with_items:
63-
- "{ mode: '0700', dir: '/etc/pgbouncer' }"
64-
- "{ mode: '0775', dir: '/etc/pgbouncer-custom' }"
63+
- { mode: '0700', dir: '/etc/pgbouncer' }
64+
- { mode: '0775', dir: '/etc/pgbouncer-custom' }
6565

6666
- name: create PgBouncer placeholder config files
6767
ansible.builtin.file:

0 commit comments

Comments
 (0)