From 4621000ce1f00ef1605d0e796f6caf04a86eaff9 Mon Sep 17 00:00:00 2001 From: theo vallet Date: Tue, 26 Jan 2021 16:46:04 +0100 Subject: [PATCH] backup script --- roles/s-lb-bd-ab/files/installmysql.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/s-lb-bd-ab/files/installmysql.sh b/roles/s-lb-bd-ab/files/installmysql.sh index 9a9ce0e..26d01b4 100755 --- a/roles/s-lb-bd-ab/files/installmysql.sh +++ b/roles/s-lb-bd-ab/files/installmysql.sh @@ -4,7 +4,7 @@ apt-get update && apt-get upgrade -y # Install MySQL Server in a Non-Interactive mode. Default root password will be "root" echo "mysql-server mysql-server/root_password password root" | debconf-set-selections echo "mysql-server mysql-server/root_password_again password root" | debconf-set-selections -apt-get -y install mariadb-server +apt-get -y install mysql-server # Run the MySQL Secure Installation wizard