From: Fred T. Hamster Date: Thu, 5 Feb 2026 12:30:01 +0000 (-0500) Subject: revised name for 'apps' to be 'source' X-Git-Tag: 2.140.190^2~37 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=35532940329dc8bb11e37ec55a2ac68a6fdbc822;p=feisty_meow.git revised name for 'apps' to be 'source' 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.... --- diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 4b3b3b7d..a3ee1045 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -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 index 2b668434..00000000 --- a/scripts/customize/fred/scripts/jobby/mirror_uva_codes.sh +++ /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/ - diff --git a/scripts/site_avenger/act_on_apps.sh b/scripts/site_avenger/act_on_apps.sh index c0c0f784..bc193ee5 100644 --- a/scripts/site_avenger/act_on_apps.sh +++ b/scripts/site_avenger/act_on_apps.sh @@ -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 "${@}" diff --git a/scripts/site_avenger/powerup.sh b/scripts/site_avenger/powerup.sh index 857e88d9..850f99b9 100644 --- a/scripts/site_avenger/powerup.sh +++ b/scripts/site_avenger/powerup.sh @@ -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. diff --git a/scripts/site_avenger/revamp_cakelampvm_v002.sh b/scripts/site_avenger/revamp_cakelampvm_v002.sh index 8d859862..8ec94aca 100644 --- a/scripts/site_avenger/revamp_cakelampvm_v002.sh +++ b/scripts/site_avenger/revamp_cakelampvm_v002.sh @@ -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."