From 56776f5644531e69cc62b958fbd6833943d760ba Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 6 May 2023 10:06:10 -0500 Subject: [PATCH] Update cc-cleaner.sh --- cc-cleaner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cc-cleaner.sh b/cc-cleaner.sh index b9b0be7..7f0aee2 100755 --- a/cc-cleaner.sh +++ b/cc-cleaner.sh @@ -61,7 +61,7 @@ case "$choice" in echo read -p "Enter the admin password for MySQL: " pwd echo "Enter the root password for adding back in the admin user for MySQL:" - mysql -u root -p -e "CREATE USER 'admintest'@'%' IDENTIFIED BY '${pwd}';GRANT ALL PRIVILEGES ON *.* TO 'admintest'@'%' WITH GRANT OPTION;" + mysql -u root -p -e "CREATE USER 'admin'@'%' IDENTIFIED BY '${pwd}';GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION;" ;; esac