being forced to debug missing prompt
authorChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:31:40 +0000 (15:31 -0500)
committerChris Koeritz <fred@gruntose.com>
Wed, 7 Feb 2018 20:31:40 +0000 (15:31 -0500)
something is causing the revamp not to show the prompt.

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

index 92e0d71e640aaf4c7bb08f401e27652eddcd761d..637e352d9922b438d34f25206332e70bf8c075a9 100644 (file)
@@ -62,6 +62,7 @@ function read_password()
 {
   prompt="$1"; shift
   echo -n "$prompt "
+#  sync
   # turn off echo but remember former setting.
   stty_orig=`stty -g`
   stty -echo
index c5cf860f2a83ad237239bb5dbd86e60851b7a4b6..d86a35d7e169b4f4ac6fded904a80a28b9bf11f3 100644 (file)
@@ -24,9 +24,13 @@ 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
 mysql_passwd="$(load_password /etc/mysql/secret_password)"
+echo B
 if [ -z "$mysql_password" ]; then
+echo C
   mysql_password="$(read_password "Please enter the MySQL root account password:")"
+echo D
 #  echo -n "Please enter the MySQL root account password: "
 #  # turn off echo but remember former setting.
 #  stty_orig=`stty -g`
@@ -36,9 +40,11 @@ if [ -z "$mysql_password" ]; then
 #  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_password"
 fi