Skip to content

Commit 57d70a5

Browse files
authored
Merge pull request hestiacp#1533 from hestiacp/fix/2021-01-installer_never_set_pgsql
$pgsql was never set instead of $postgresql is set
2 parents 20c5bed + e884811 commit 57d70a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ if [ "$mysql" = 'yes' ]; then
10211021
installed_db_types='mysql'
10221022
fi
10231023

1024-
if [ "$pgsql" = 'yes' ]; then
1024+
if [ "$postgresql" = 'yes' ]; then
10251025
installed_db_types="$installed_db_type,pgsql"
10261026
fi
10271027

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ if [ "$mysql" = 'yes' ]; then
10721072
installed_db_types='mysql'
10731073
fi
10741074

1075-
if [ "$pgsql" = 'yes' ]; then
1075+
if [ "$postgresql" = 'yes' ]; then
10761076
installed_db_types="$installed_db_type,pgsql"
10771077
fi
10781078

0 commit comments

Comments
 (0)