File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 44
44
strategy :
45
45
matrix :
46
46
include :
47
- - distro : rockylinux8
48
- - distro : rockylinux9
47
+ # - distro: rockylinux8
48
+ # - distro: rockylinux9
49
49
- distro : debian11
50
50
- distro : debian12
51
51
- distro : ubuntu2004
64
64
python-version : ' 3.x'
65
65
66
66
- name : Install test dependencies.
67
- run : pip3 install "ansible>9,<10 " molecule molecule-plugins[docker] docker
67
+ run : pip3 install "ansible>10,<12 " molecule molecule-plugins[docker] docker
68
68
69
69
- name : Run Molecule tests.
70
70
run : molecule -v test
Original file line number Diff line number Diff line change 8
8
.vagrant
9
9
test
10
10
* .retry
11
+ ANXS-postgresql.code-workspace
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ postgresql_ident_file: "{{ postgresql_conf_directory }}/pg_ident.conf"
111
111
postgresql_varlib_directory_name : " postgresql"
112
112
postgresql_data_directory : " /var/lib/{{ postgresql_varlib_directory_name }}/{{ postgresql_version }}/{{ postgresql_cluster_name }}"
113
113
postgresql_wal_directory : " "
114
+ postgresql_wal_segsize : " "
114
115
postgresql_pid_directory : " /var/run/postgresql"
115
116
# If external_pid_file is not explicitly set, on extra PID file is written
116
117
postgresql_external_pid_file : " {{ postgresql_pid_directory }}/{{ postgresql_version }}-{{ postgresql_cluster_name }}.pid"
Original file line number Diff line number Diff line change 116
116
{% if postgresql_pwfile != "" %}--pwfile={{ postgresql_pwfile }} {% endif %}
117
117
{% if postgresql_wal_directory != "" and postgresql_version is version_compare('10', '<') %}--xlogdir={{ postgresql_wal_directory }} {% endif %}
118
118
{% if postgresql_wal_directory != "" and postgresql_version is version_compare('10', '>=') %}--waldir={{ postgresql_wal_directory }} {% endif %}
119
+ {% if postgresql_wal_segsize != "" and postgresql_version is version_compare('11', '>=') %}--wal-segsize={{ postgresql_wal_segsize }} {% endif %}
119
120
become : yes
120
121
become_user : " {{ postgresql_service_user }}"
121
122
when : ansible_os_family == "RedHat" and
You can’t perform that action at this time.
0 commit comments