We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417eec8 commit 3bfaf74Copy full SHA for 3bfaf74
1 file changed
install/hst-install-ubuntu.sh
@@ -575,13 +575,13 @@ echo "(*) PHP"
575
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php > /dev/null 2>&1
576
577
# Installing sury Apache2 repo
578
-if [ "$apache" = 'yes' ]
+if [ "$apache" = 'yes' ]; then
579
echo "(*) Apache2"
580
echo "deb http://ppa.launchpad.net/ondrej/apache2/ubuntu $codename main" > $apt/apache2.list
581
fi
582
583
# Installing MariaDB repo
584
-if [ "$mysql" = 'yes' ]
+if [ "$mysql" = 'yes' ]; then
585
echo "(*) MariaDB"
586
echo "deb [arch=amd64] http://ams2.mirrors.digitalocean.com/mariadb/repo/$mariadb_v/$VERSION $codename main" > $apt/mariadb.list
587
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