reversed polarity, so now FEISTY_MEOW_REPOS_SCAN
authorFred T. Hamster <fred@gruntose.com>
Wed, 1 Nov 2023 21:07:23 +0000 (17:07 -0400)
committerFred T. Hamster <fred@gruntose.com>
Wed, 1 Nov 2023 21:07:23 +0000 (17:07 -0400)
instead of FEISTY_MEOW_SCAN_REPOS, in honor of existing S variable FEISTY_MEOW_SCRIPTS, to avoid hatred at new inability to auto-complete.

scripts/core/variables.sh
scripts/site_avenger/config/default.app
scripts/site_avenger/revamp_cakelampvm_v002.sh
scripts/system/add_apache_site.sh
scripts/system/remove_apache_site.sh

index 5a0c0b7bd463ec36a9e978661c46a16d654095e6..6172635ce74833eadbf0d3a7bd1443de8b3c5b9d 100644 (file)
@@ -246,23 +246,23 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org
   fi
 
   # add in any folders that are under the feisty meow applications folder.
-  define_yeti_variable FEISTY_MEOW_SCAN_REPOS
-  if [ -z "$FEISTY_MEOW_SCAN_REPOS" ]; then
+  define_yeti_variable FEISTY_MEOW_REPOS_SCAN
+  if [ -z "$FEISTY_MEOW_REPOS_SCAN" ]; then
     if [ -d "$HOME/apps" ]; then
-      define_yeti_variable FEISTY_MEOW_SCAN_REPOS="$HOME/apps"
+      define_yeti_variable FEISTY_MEOW_REPOS_SCAN="$HOME/apps"
     else
-#      echo "No value set for FEISTY_MEOW_SCAN_REPOS and no default apps folder found in home."
+#      echo "No value set for FEISTY_MEOW_REPOS_SCAN and no default apps folder found in home."
       true
     fi
   fi
-  if [ -d "$FEISTY_MEOW_SCAN_REPOS" ]; then
+  if [ -d "$FEISTY_MEOW_REPOS_SCAN" ]; then
 #hmmm: handle the repos as if they are multi value!!!
     # general search for normal project folders in apps.
-    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_SCAN_REPOS" -maxdepth 2 -mindepth 2 -iname ".git" -type d -exec dirname {} ';') "
-    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_SCAN_REPOS" -maxdepth 2 -mindepth 2 -iname ".svn" -type d -exec dirname {} ';') "
+    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_REPOS_SCAN" -maxdepth 2 -mindepth 2 -iname ".git" -type d -exec dirname {} ';') "
+    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_REPOS_SCAN" -maxdepth 2 -mindepth 2 -iname ".svn" -type d -exec dirname {} ';') "
 
     # special search for site avenger directories; they have avenger5 as second level.
-    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_SCAN_REPOS" -maxdepth 2 -mindepth 2 -iname "avenger5" -type d) "
+    REPOSITORY_LIST+="$(find "$FEISTY_MEOW_REPOS_SCAN" -maxdepth 2 -mindepth 2 -iname "avenger5" -type d) "
   fi
   
   # the archive list is a set of directories that are major repositories of
index 6a2d9a26de49ef0d61731651cdef0f2fcb702613..9220cce5a57adf98ab4d97b410e528351eee316c 100644 (file)
@@ -13,7 +13,7 @@
 
 # the top level of the user's application storage.
 if [ -z "$BASE_APPLICATION_PATH" ]; then
-  export BASE_APPLICATION_PATH="$FEISTY_MEOW_SCAN_REPOS"
+  export BASE_APPLICATION_PATH="$FEISTY_MEOW_REPOS_SCAN"
 #hmmm: fix for multivalue usage!
 fi
 # where the code should come from.
index 7d50a0573d20f4009bb183434ee1d240a2f57dfb..bfbcb194fab36a7ff28af96da0114156815aa466 100644 (file)
@@ -114,8 +114,8 @@ chown -R fred:fred /home/fred /home/archives/stuffing /home/fred/.[a-zA-Z0-9]*
 exit_on_error "chown fred home"
 
 #hmmm: argh, wrong check!  can't check a multi-value if it's a directory or not!!!
-if [ -d "$FEISTY_MEOW_SCAN_REPOS" ]; then
-  group_perm $FEISTY_MEOW_SCAN_REPOS
+if [ -d "$FEISTY_MEOW_REPOS_SCAN" ]; then
+  group_perm $FEISTY_MEOW_REPOS_SCAN
   exit_on_error "group perms on fred's apps"
 fi
 harsh_perm /home/fred/.ssh
index b3703ae01645679db6f599d98ba317de54d002a8..c8c53a491c9d79eaed6a9e260cb6e0907c244577 100644 (file)
@@ -12,7 +12,7 @@ source "$FEISTY_MEOW_SCRIPTS/system/common_sysadmin.sh"
 # some convenient defaults for our current usage.
 
 if [ -z "$BASE_APPLICATION_PATH" ]; then
-  BASE_APPLICATION_PATH="$FEISTY_MEOW_SCAN_REPOS"
+  BASE_APPLICATION_PATH="$FEISTY_MEOW_REPOS_SCAN"
 #hmmm: take just first item from the repos list!
 fi
 if [ -z "$STORAGE_SUFFIX" ]; then
index 9e21fa31e82911d9c3b26e4756c1098313c9713e..4465a759d100d155ce14f85335861c209fb44297 100644 (file)
@@ -12,7 +12,7 @@ source "$FEISTY_MEOW_SCRIPTS/system/common_sysadmin.sh"
 # some convenient defaults for our current usage.
 
 if [ -z "$BASE_APPLICATION_PATH" ]; then
-  BASE_APPLICATION_PATH="$FEISTY_MEOW_SCAN_REPOS"
+  BASE_APPLICATION_PATH="$FEISTY_MEOW_REPOS_SCAN"
 #hmmm: take just first item!
 fi
 if [ -z "$STORAGE_SUFFIX" ]; then