Skip to content

Commit cc192d7

Browse files
committed
refactor: fix ansible-lint indentation issue
Signed-off-by: Rich Megginson <[email protected]>
1 parent f550f17 commit cc192d7

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
@@ -61,8 +61,8 @@
6161

6262
- name: Init DB on booted systems
6363
when:
64-
- not __postgresql_conf.stat.exists
65-
- __postgresql_is_booted | bool
64+
- not __postgresql_conf.stat.exists
65+
- __postgresql_is_booted | bool
6666
command:
6767
cmd: postgresql-setup --initdb
6868
creates: "{{ __postgresql_main_conf_file }}"
@@ -72,8 +72,8 @@
7272
# out and replace with static values
7373
- name: Init DB on non-booted systems
7474
when:
75-
- not __postgresql_conf.stat.exists
76-
- not __postgresql_is_booted | bool
75+
- not __postgresql_conf.stat.exists
76+
- not __postgresql_is_booted | bool
7777
shell:
7878
cmd: |
7979
set -euo pipefail

0 commit comments

Comments
 (0)