File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Convenient ordering - debian.yml sets postgresql_version if it is unset,
4
4
# which is needed by the include_vars files.
5
- - include : debian.yml
5
+ - include_tasks : debian.yml
6
6
when : ansible_os_family == "Debian"
7
7
8
8
# For RedHat we use the value from defaults/main.yml
22
22
when : postgresql_conf_dir is not defined
23
23
24
24
# Needs postgresql_pgdata_dir set
25
- - include : redhat.yml
25
+ - include_tasks : redhat.yml
26
26
when : ansible_os_family == "RedHat"
27
27
28
28
- name : Create conf.d
47
47
template : src=pg_hba.conf.{{ ansible_os_family | lower }}.j2 dest={{ postgresql_conf_dir }}/pg_hba.conf owner={{ postgresql_user_name }} group={{ postgresql_user_name }} mode=0400 backup=yes
48
48
notify : Reload PostgreSQL
49
49
50
- - include : backup.yml
50
+ - include_tasks : backup.yml
51
51
when : postgresql_backup_dir is defined
52
52
53
53
- name : Ensure PostgreSQL is running
You can’t perform that action at this time.
0 commit comments