From 24d93ecf4405745163bd9b1658d18c79aa6faed9 Mon Sep 17 00:00:00 2001 From: Valentin Date: Fri, 23 Feb 2024 16:40:37 +0100 Subject: [PATCH] mysql_secure_installation correction 7 --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 42e8a7b..f5eb28b 100644 --- a/install.sh +++ b/install.sh @@ -110,9 +110,9 @@ if [[ "$answer" == "y" ]]; then expect \"Change the root password? \\[Y/n\\]\" send \"y\r\" expect \"New password:\" - send \"${$db_root_password}\r\" + send \"${db_root_password}\r\" expect \"Re-enter new password:\" - send \"${$db_root_password}\r\" + send \"${db_root_password}\r\" expect \"Remove anonymous users?\" send \"y\r\" expect \"Disallow root login remotely?\"