library/roles/postgresql/tasks/configure-access.yml: Fix a variable that can be undefined.
This commit is contained in:
parent
e2464cb85a
commit
2641b4d863
|
@ -75,5 +75,5 @@
|
||||||
service: name=postgresql state=restarted
|
service: name=postgresql state=restarted
|
||||||
when:
|
when:
|
||||||
- postgresql_enabled
|
- postgresql_enabled
|
||||||
- restart_postgresql.changed
|
- ( restart_postgresql is defined ) and ( restart_postgresql | changed )
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_conf' ]
|
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_conf' ]
|
||||||
|
|
Loading…
Reference in New Issue