Merge pull request #498 from al-cheb/al-cheb/disable_mysql_service

Disable mysql.service by default on Ubuntu images
This commit is contained in:
Alena Sviridenko
2020-03-06 09:44:34 +03:00
committed by GitHub

View File

@@ -44,3 +44,7 @@ echo "Lastly, documenting what we added to the metadata file"
DocumentInstalledItem "MySQL ($(mysql --version))"
DocumentInstalledItem "MySQL Server (user:root password:root)"
DocumentInstalledItem "MS SQL Server Client Tools"
# Disable mysql.service
systemctl is-active --quiet mysql.service && systemctl stop mysql.service
systemctl disable mysql.service