revised name for 'apps' to be 'source'
authorFred T. Hamster <fred@gruntose.com>
Thu, 5 Feb 2026 12:30:01 +0000 (07:30 -0500)
committerFred T. Hamster <fred@gruntose.com>
Thu, 5 Feb 2026 12:30:01 +0000 (07:30 -0500)
makes a lot more sense, since we store source there and not built apps.
plus the 's' letter is no longer colliding with anything else in my standard names?  wheeee....

scripts/core/variables.sh
scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh [deleted file]
scripts/site_avenger/act_on_apps.sh
scripts/site_avenger/powerup.sh
scripts/site_avenger/revamp_cakelampvm_v002.sh

index 4b3b3b7d8d456fc407fd35a6e3c6a544091a7bbd..a3ee10450a4ab8f38a1c6ff12aea36b20eb9425a 100644 (file)
@@ -273,16 +273,16 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org
   # add in any folders that are under the feisty meow applications folder.
   define_yeti_variable FEISTY_MEOW_REPOS_SCAN
   if [ -z "$FEISTY_MEOW_REPOS_SCAN" ]; then
-    if [ -d "$FEISTY_MEOW_PERSONAL_HOME/apps" ]; then
-      define_yeti_variable FEISTY_MEOW_REPOS_SCAN="$FEISTY_MEOW_PERSONAL_HOME/apps"
+    if [ -d "$FEISTY_MEOW_PERSONAL_HOME/source" ]; then
+      define_yeti_variable FEISTY_MEOW_REPOS_SCAN="$FEISTY_MEOW_PERSONAL_HOME/source"
     else
-#      echo "No value set for FEISTY_MEOW_REPOS_SCAN and no default apps folder found in home."
+#      echo "No value set for FEISTY_MEOW_REPOS_SCAN and no default source folder found in home."
       true
     fi
   fi
   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.
+    # general search for normal project folders in source.
     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 {} ';') "
 
diff --git a/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh b/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh
deleted file mode 100644 (file)
index 2b66843..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env bash
-
-# get the uva codes.
-mkdir -p ~/data/code_depot/uva_codes/
-rsync -avz --delete cak0l@clambook:apps/  ~/data/code_depot/uva_codes/
-
index c0c0f7840062dafbc6935c2496b2193ca58a19fa..bc193ee577df5e59927728452d3da746445a57d1 100644 (file)
@@ -7,6 +7,6 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 # fix the app name for our call to the act_on_tree script.
 export APP_NAME="$(basename $0 .sh)"
 
-act_on_tree -f avenger5 -d ~/apps "${@}"
+act_on_tree -f avenger5 -d $HOME/source "${@}"
 
 
index 857e88d9c9caee50dfa3ec61ae7f19a9e8191ec7..850f99b98db184324844640143d4af9db1b78b7f 100644 (file)
@@ -15,7 +15,7 @@
 # application "name" and one or more "themes".  By convention, the name
 # and the theme are often the same, except the theme is capitalized.
 # For example, let's say our app name is "turtle" and our theme name is "box".
-# The repo is checked out to a folder called "~/apps/turtle".
+# The repo is checked out to a folder called "~/source/turtle".
 # This script will want to use "turtle" as the app name.
 # It will have to be told the theme name, but will assume it's 'Turtle' to
 # start with.  The concept of the theme comes from cakephp.
index 8d8598626a7de02bcf28c90acef10668c7b7e0d4..8ec94aca54635ccde40537dc177cc0e180626451 100644 (file)
@@ -116,11 +116,11 @@ 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_REPOS_SCAN" ]; then
   group_perm $FEISTY_MEOW_REPOS_SCAN
-  exit_on_error "group perms on fred's apps"
+  exit_on_error "group perms on fred's source"
 fi
 harsh_perm /home/fred/.ssh
 exit_on_error "harsh_perm setting on fred .ssh"
-group_perm /home/fred/apps/mapsdemo
+group_perm /home/fred/source/mapsdemo
 exit_on_error "group perms on mapsdemo app"
 
 echo "...done with permission changes."