Skip to content

Commit 583f8af

Browse files
committed
Merge branch hotfix/v6.0.1 into master
2 parents 4a9baeb + d669c39 commit 583f8af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apt-rpm/bin/documentserver-configure.sh.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ execute_postgres_scripts(){
244244
$CREATEDB $DB_NAME >/dev/null 2>&1
245245
fi
246246

247-
if [ ! "$CLUSTER_MODE" = true ]; then
247+
if [ ! "$CLUSTER_MODE" == true ]; then
248248
$PSQL -d "$DB_NAME" -f "$DIR/server/schema/postgresql/removetbl.sql" >/dev/null 2>&1
249249
fi
250250

deb/debian/postinst.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ install_postges() {
126126
if ! $PSQL -lt | cut -d\| -f 1 | grep -qw $DB_NAME; then
127127
$CREATEDB $DB_NAME >/dev/null 2>&1
128128
fi
129-
if [ ! $CLUSTER_MODE = true ]; then
129+
if [ ! $CLUSTER_MODE == true ]; then
130130
$PSQL -d $DB_NAME -f "$DIR/server/schema/postgresql/removetbl.sql" \
131131
>/dev/null 2>&1
132132
fi

rpm/bin/documentserver-configure.sh.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ execute_postgres_scripts(){
224224
$CREATEDB $DB_NAME >/dev/null 2>&1
225225
fi
226226

227-
if [ ! "$CLUSTER_MODE" = true ]; then
227+
if [ ! "$CLUSTER_MODE" == true ]; then
228228
$PSQL -d "$DB_NAME" -f "$DIR/server/schema/postgresql/removetbl.sql" >/dev/null 2>&1
229229
fi
230230

0 commit comments

Comments
 (0)