File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ Role Variables
77
77
- `postgresql_pg_hba_local_ipv6`: If set to `false`, this will remove the `host ... ::1/128` entry from `pg_hba.conf`
78
78
that is preconfigured by the PostgreSQL package.
79
79
80
- - `postgresql_pgdata_dir `: Only set this if you have changed the `$PGDATA` directory from the package default. Note this
80
+ - `postgresql_pgdata `: Only set this if you have changed the `$PGDATA` directory from the package default. Note this
81
81
does not configure PostgreSQL to actually use a different directory, you will need to do that yourself, it just allows
82
82
the role to properly locate the directory.
83
83
84
- - `postgresql_conf_dir`: As with `postgresql_pgdata_dir ` except for the configuration directory.
84
+ - `postgresql_conf_dir`: As with `postgresql_pgdata ` except for the configuration directory.
85
85
86
86
### Backups ###
87
87
Original file line number Diff line number Diff line change 11
11
postgresql_version : " {{ postgresql_default_version }}"
12
12
when : ansible_os_family == "RedHat" and postgresql_version is not defined
13
13
14
- # Sets postgresql_pgdata_dir , postgresql_conf_dir
14
+ # Sets postgresql_pgdata , postgresql_conf_dir
15
15
- name : Set OS-specific variables
16
16
include_vars : " {{ ansible_os_family | lower }}.yml"
17
17
25
25
postgresql_conf_dir : " {{ postgresql_conf_dir_default }}"
26
26
when : postgresql_conf_dir is not defined
27
27
28
- # Needs postgresql_pgdata_dir set
28
+ # Needs postgresql_pgdata set
29
29
- include_tasks : redhat.yml
30
30
when : ansible_os_family == "RedHat"
31
31
You can’t perform that action at this time.
0 commit comments