working okay now for revamp
authorChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:53:16 +0000 (15:53 -0500)
committerChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:53:16 +0000 (15:53 -0500)
the mysql password management seems to be doing well now.

scripts/security/password_functions.sh
scripts/site_avenger/revamp_cakelampvm.sh

index ca365fd263efe101f2924fc8f36fa2ec1246191b..f1e0df135dceed04c85de9fd116385e7bb7f2a6f 100644 (file)
@@ -28,8 +28,6 @@ function load_password()
 
   # return the password in the variable they provided.
   eval $varname="$passwd"
-#echo varname is: $varname
-#echo new value of that variable is ${!varname}
 }
 
 # stores a password into a password file.  the password file should be the
@@ -75,8 +73,6 @@ function read_password()
   stty $stty_orig
   # return the password in the variable they provided.
   eval $varname="$the_passwd"
-#echo varname is: $varname
-#echo new value of that variable is ${!varname}
 }
 
 
index f8c2ebe274febc5d83170ef0b6a6bdf1b10e8f38..c01a9da6a44ce7902a9a5b68814fb6ea1438d845 100644 (file)
@@ -22,30 +22,15 @@ source "$FEISTY_MEOW_SCRIPTS/security/password_functions.sh"
 
 ##############
 
-# new requirement to have the sql root password, since we need to do some sql db configuration.
-
-echo A
+# it's a requirement to have sql root password, since we may need some sql db configuration.
 load_password /etc/mysql/secret_password mysql_passwd
-echo B
 if [ -z "$mysql_passwd" ]; then
-echo C
   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`
-#  stty -echo
-#  read mysql_passwd
-#  # turn echo back on.
-#  stty $stty_orig
 fi
 if [ -z "$mysql_passwd" ]; then
-echo E
   echo "This script must have the sql root password to proceed."
   exit 1
 else
-echo F
   store_password /etc/mysql/secret_password "$mysql_passwd"
 fi