fixed variable name confusion
authorChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:50:47 +0000 (15:50 -0500)
committerChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:50:47 +0000 (15:50 -0500)
scripts/site_avenger/revamp_cakelampvm.sh

index 773e5a8909ec6ce70c1d92b1c8e3790b5c12fde6..f8c2ebe274febc5d83170ef0b6a6bdf1b10e8f38 100644 (file)
@@ -27,10 +27,11 @@ source "$FEISTY_MEOW_SCRIPTS/security/password_functions.sh"
 echo A
 load_password /etc/mysql/secret_password mysql_passwd
 echo B
-if [ -z "$mysql_password" ]; then
+if [ -z "$mysql_passwd" ]; then
 echo C
-  read_password "Please enter the MySQL root account password:" mysql_password
+  read_password "Please enter the MySQL root account password:" mysql_passwd
 echo D
+echo password was found as: $mysql_passwd
 #  echo -n "Please enter the MySQL root account password: "
 #  # turn off echo but remember former setting.
 #  stty_orig=`stty -g`
@@ -45,7 +46,7 @@ echo E
   exit 1
 else
 echo F
-  store_password /etc/mysql/secret_password "$mysql_password"
+  store_password /etc/mysql/secret_password "$mysql_passwd"
 fi
 
 ##############