File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4444 strategy :
4545 matrix :
4646 include :
47- - distro : rockylinux8
48- - distro : rockylinux9
47+ # - distro: rockylinux8
48+ # - distro: rockylinux9
4949 - distro : debian11
5050 - distro : debian12
5151 - distro : ubuntu2004
6464 python-version : ' 3.x'
6565
6666 - 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
6868
6969 - name : Run Molecule tests.
7070 run : molecule -v test
Original file line number Diff line number Diff line change 88.vagrant
99test
1010* .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"
111111postgresql_varlib_directory_name : " postgresql"
112112postgresql_data_directory : " /var/lib/{{ postgresql_varlib_directory_name }}/{{ postgresql_version }}/{{ postgresql_cluster_name }}"
113113postgresql_wal_directory : " "
114+ postgresql_wal_segsize : " "
114115postgresql_pid_directory : " /var/run/postgresql"
115116# If external_pid_file is not explicitly set, on extra PID file is written
116117postgresql_external_pid_file : " {{ postgresql_pid_directory }}/{{ postgresql_version }}-{{ postgresql_cluster_name }}.pid"
Original file line number Diff line number Diff line change 116116 {% if postgresql_pwfile != "" %}--pwfile={{ postgresql_pwfile }} {% endif %}
117117 {% if postgresql_wal_directory != "" and postgresql_version is version_compare('10', '<') %}--xlogdir={{ postgresql_wal_directory }} {% endif %}
118118 {% 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 %}
119120 become : yes
120121 become_user : " {{ postgresql_service_user }}"
121122 when : ansible_os_family == "RedHat" and
You can’t perform that action at this time.
0 commit comments