Skip to content

Commit b9bd9f3

Browse files
authored
Update install.sh
1 parent 0e1755d commit b9bd9f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

install.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,10 @@ echo "${yellow}Installing MariaDB.${txtreset}"
142142
sudo apt install mariadb-server
143143
sudo systemctl enable --now mysql
144144
echo "${yellow}Configuring MariaDB (mysql_secure_installation). Please answer yes to all except denying all outside connections. Set a root password and remember it.${txtreset}"
145-
mysql_secure_installation
145+
if [[ "$DONT_SECURE_INSTALL_MYSQL" != "yes" ]]; then
146+
# CI
147+
mysql_secure_installation
148+
fi
146149
echo "${boldgreen}MariaDB installed and running.${txtreset}"
147150

148151
echo "${yellow}Installing MailHog.${txtreset}"

0 commit comments

Comments
 (0)