From 4c51be9de16799adf24c8b34a79c017b70e1bc5f Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 5 Jun 2023 21:25:13 -0500 Subject: [PATCH] Update cc-cleaner.sh --- cc-cleaner.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cc-cleaner.sh b/cc-cleaner.sh index e240dec..fecde41 100755 --- a/cc-cleaner.sh +++ b/cc-cleaner.sh @@ -62,7 +62,8 @@ case "$choice" in echo echo - read -p "Enter the admin password for MySQL: " pwd + read -p "Enter the password for the Admin account in MySQL: " pwd + echo echo "Enter the root password for adding back in the admin user for MySQL:" mysql -u root -p -e "CREATE USER 'admin'@'%' IDENTIFIED BY '${pwd}';GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION;"