this version has been denoised
authorChris Koeritz <fred@gruntose.com>
Fri, 18 May 2018 20:01:28 +0000 (16:01 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 18 May 2018 20:01:28 +0000 (16:01 -0400)
got rid of a lot of debug output by storing in a file in $TMP now.

scripts/site_avenger/config/default.app
scripts/site_avenger/config/ecocor6.app
scripts/site_avenger/config/mapsdemo.app
scripts/site_avenger/shared_site_mgr.sh

index 0235eb5074a7334736f64b69d51b648cf40fc988..3690e0e5faf0d1faf16ce7cdadb65bc6cd9d7f28 100644 (file)
@@ -43,20 +43,20 @@ export DISTRO="ubuntu"
 
 export APPLICATION_NAME="${app_dirname}"
 
-echo app name was computed as $APPLICATION_NAME
+echo app name was computed as $APPLICATION_NAME >> "$SSM_LOG_FILE"
 
 # change this if the site is on the "real" internet.
 export DOMAIN_NAME="${app_dirname}.vm"
 
-echo domain name was computed as $DOMAIN_NAME
+echo domain name was computed as $DOMAIN_NAME >> "$SSM_LOG_FILE"
 
 export REPO_NAME="${app_dirname}"
 
-echo repo name was computed as $REPO_NAME
+echo repo name was computed as $REPO_NAME >> "$SSM_LOG_FILE"
 
 export THEME_NAME="$(capitalize_first_char "${app_dirname}")"
 
-echo theme name was computed as $THEME_NAME
+echo theme name was computed as $THEME_NAME >> "$SSM_LOG_FILE"
 
 ####
 
index d1d3edc51f836ad50f7d65c4621890e4c0c5ad58..da4741fd26f32ea6e76e3727a531c7ee642edf3b 100644 (file)
@@ -3,6 +3,7 @@
 # override for ecocor6 to set the theme.
 
 export THEME_NAME="Ecocor"
-echo "*** overrode THEME_NAME as: $THEME_NAME"
+
+echo "*** overrode THEME_NAME as: $THEME_NAME" >> "$SSM_LOG_FILE"
 
  
index 34fe6ce89fc9e9873ac88225fada9c2f3a228674..fb2856259f4c1bc5e11aa4dab08bb61aa60017e0 100644 (file)
@@ -5,6 +5,5 @@
 
 export DOMAIN_NAME="${APPLICATION_NAME}.cakelampvm.com"
 
-
-echo "*** overrode domain name as: $DOMAIN_NAME"
+echo "*** overrode domain name as: $DOMAIN_NAME" >> "$SSM_LOG_FILE"
 
index f824776573539e0cc446aa4d506bb355aae8283b..4f18ffcb984c8b3a37c5302609fb7d040f1265b9 100644 (file)
 
 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
+export SSM_LOG_FILE="$TMP/$(logname)-siteavenger-script.log"
+
 # get our configuration loaded, if we know the config file.
 # if there is none, we will use our default version.
 export SITE_MANAGEMENT_CONFIG_FILE
 if [ -z "$SITE_MANAGEMENT_CONFIG_FILE" ]; then
   SITE_MANAGEMENT_CONFIG_FILE="$WORKDIR/config/default.app"
-  echo "Site management config file was not set.  Using default:"
-  echo "  $SITE_MANAGEMENT_CONFIG_FILE"
+  echo "Site management config file was not set.  Using default:" >> "$SSM_LOG_FILE"
+  echo "  $SITE_MANAGEMENT_CONFIG_FILE" >> "$SSM_LOG_FILE"
 fi
 
 # load in at least the default version to get us moving.
@@ -32,7 +34,7 @@ function check_apps_root()
 {
   local appdir="$1"; shift
   if [ ! -d "$appdir" ]; then
-    echo "Creating the apps directory: $appdir"
+    echo "Creating the apps directory: $appdir" >> "$SSM_LOG_FILE"
     mkdir "$appdir"
     test_or_die "Making apps directory when not already present"
   fi
@@ -44,14 +46,14 @@ function locate_config_file()
   local app_dirname="$1"; shift
 
   local configfile="$WORKDIR/config/${app_dirname}.app"
-  echo "config file?: $configfile"
+  echo "config file guessed?: $configfile" >> "$SSM_LOG_FILE"
   if [ ! -f "$configfile" ]; then
     # this is not a good config file.  we can't auto-guess the config.
     echo -e "
 There is no specific site configuration file in:
   $configfile
 We will continue onward using the default and hope that this project follows
-the standard pattern for cakephp projects."
+the standard pattern for cakephp projects." >> "$SSM_LOG_FILE"
     # we'll pull in the default config file we set earlier; this will
     # reinitialize some variables based on the app name.
   else
@@ -129,7 +131,7 @@ function test_app_folder()
   local combo="$appsdir/$dir"
 
   if [ ! -d "$combo" ]; then
-    echo "Creating app directory: $combo"
+    echo "Creating app directory: $combo" >> "$SSM_LOG_FILE"
     mkdir "$combo"
     test_or_die "Making application directory when not already present"
   fi
@@ -184,8 +186,8 @@ function update_repo()
   local repo_root="$1"; shift
   local repo_name="$1"; shift
 
-echo here are parms in update repo:
-var full_app_dir checkout_dirname repo_root repo_name
+echo here are parms in update repo: >> "$SSM_LOG_FILE"
+var full_app_dir checkout_dirname repo_root repo_name >> "$SSM_LOG_FILE"
 
   # forget any prior value, since we are going to validate the path.
   unset site_store_path
@@ -371,12 +373,12 @@ function fix_appdir_ownership()
   # go with the default user running the script.
   user_name="$USER"
   if [ ! -z "$user_name" -a "$user_name" != "root" ]; then
-    echo "Chowning the app folder to be owned by: $user_name"
+    echo "Chowning the app folder to be owned by: $user_name" >> "$SSM_LOG_FILE"
 #hmmm: have to hope for now for standard group named after user 
     sudo chown -R "$user_name:$user_name" "$combo"
     test_or_die "Chowning $combo to be owned by $user_name"
   else
-    echo "user name failed checks for chowning, was found as '$user_name'"
+    echo "user name failed checks for chowning, was found as '$user_name'" >> "$SSM_LOG_FILE"
   fi
 
   # 
@@ -401,7 +403,7 @@ function switch_to()
     test_app_folder "$BASE_APPLICATION_PATH" "$app_dirname"
   fi
   if [ $? -ne 0 ]; then
-    echo "Could not locate that application directory"
+    echo "Could not locate the application directory: ${app_dirname}"
     return 1
   fi