File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -130,10 +130,10 @@ build/test_suse: build/test_suse_15.1 build/test_suse_15.2
130130 @echo Suse: done
131131
132132build/test_suse_15.1: build/test_suse_15.1_9.6 build/test_suse_15.1_10 build/test_suse_15.1_11 build/test_suse_15.1_12 build/test_suse_15.1_13
133- @echo Rhel 15.1: done
133+ @echo Suse 15.1: done
134134
135135build/test_suse_15.2: build/test_suse_15.2_9.6 build/test_suse_15.2_10 build/test_suse_15.2_11 build/test_suse_15.2_12 build/test_suse_15.2_13 build/test_suse_15.2_14
136- @echo Rhel 15.1 : done
136+ @echo Suse 15.2 : done
137137
138138define test_suse
139139 docker rm -f $1_$2_probackup_$(PKG_NAME_SUFFIX)$(PBK_VERSION) >> /dev/null 2>&1 ; \
Original file line number Diff line number Diff line change @@ -77,6 +77,12 @@ if [ ${DISTRIB} == 'centos' ] && [ ${DISTRIB_VERSION} == '8' ]; then
7777 dnf -qy module disable postgresql
7878fi
7979
80+ # PGDG doesn't support install of PG-9.6 from repo package anymore
81+ if [ ${PG_VERSION} == ' 9.6' ] && [ ${DISTRIB_VERSION} == ' 7' ]; then
82+ # ugly hack: use repo settings from PG10
83+ sed -i ' s/10/9.6/' /etc/yum.repos.d/pgdg-redhat-all.repo
84+ fi
85+
8086yum install -y postgresql${PG_TOG} -server.x86_64
8187export PGDATA=/var/lib/pgsql/${PG_VERSION} /data
8288
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ typedef enum ShowFormat
345345#define BYTES_INVALID (-1) /* file didn`t changed since previous backup, DELTA backup do not rely on it */
346346#define FILE_NOT_FOUND (-2) /* file disappeared during backup */
347347#define BLOCKNUM_INVALID (-1)
348- #define PROGRAM_VERSION "2.5.8 "
348+ #define PROGRAM_VERSION "2.5.9 "
349349
350350/* update when remote agent API or behaviour changes */
351351#define AGENT_PROTOCOL_VERSION 20509
You can’t perform that action at this time.
0 commit comments