Skip to content

Commit 3bfaf74

Browse files
author
Alexandros Ioannides
authored
Bugfixes in Ubuntu installer
1 parent 417eec8 commit 3bfaf74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/hst-install-ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,13 +575,13 @@ echo "(*) PHP"
575575
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php > /dev/null 2>&1
576576

577577
# Installing sury Apache2 repo
578-
if [ "$apache" = 'yes' ]
578+
if [ "$apache" = 'yes' ]; then
579579
echo "(*) Apache2"
580580
echo "deb http://ppa.launchpad.net/ondrej/apache2/ubuntu $codename main" > $apt/apache2.list
581581
fi
582582

583583
# Installing MariaDB repo
584-
if [ "$mysql" = 'yes' ]
584+
if [ "$mysql" = 'yes' ]; then
585585
echo "(*) MariaDB"
586586
echo "deb [arch=amd64] http://ams2.mirrors.digitalocean.com/mariadb/repo/$mariadb_v/$VERSION $codename main" > $apt/mariadb.list
587587
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 > /dev/null 2>&1

0 commit comments

Comments
 (0)