dropped the copying of customizations
authorChris Koeritz <fred@gruntose.com>
Thu, 2 May 2019 00:34:07 +0000 (20:34 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 2 May 2019 00:34:07 +0000 (20:34 -0400)
now we just do a link.  simple and clean.

scripts/archival/snarf_feisty_meow.pl
scripts/core/functions.sh
scripts/core/generate_aliases.pl
scripts/core/reconfigure_feisty_meow.sh
scripts/customize/how_to_customize.txt
scripts/security/tunnel_zooty_example.sh

index e6c54770b2d92693b940f5f267cc06f580b65fd3..a8086310b8e7059af1c72f4aa0e649e341b1e13b 100644 (file)
@@ -39,7 +39,6 @@ local($root) = &canonicalize("$FEISTY_MEOW_APEX");
 
 # snarf up all the important directories.
 # CAK: current as of 2012-05-05.
-###moved &backup_hierarchy($snarf_file_base, $number, $root, "customize");
 &backup_hierarchy($snarf_file_base, $number, $root, "infobase");
 &backup_hierarchy($snarf_file_base, $number, $root, "documentation");
 &backup_hierarchy($snarf_file_base, $number, $root, "experiments");
index 3b782a70d52b6f237fd67506fd9574d9e8828f74..12cc77175b7a8f8c9b3cb4a9bde66e6df5ceb35c 100644 (file)
@@ -484,8 +484,10 @@ if [ -z "$skip_all" ]; then
     restore_terminal_title
   }
 
-  # copies a set of custom scripts into the proper location for feisty meow
-  # to merge their functions and aliases with the standard set.
+  # merges a set of custom scripts into the feisty meow environment.  can be
+  # passed a name to use as the custom scripts source folder (found on path
+  # $FEISTY_MEOW_SCRIPTS/customize/{name}), or it will try to guess the name
+  # by using the login name.
   function recustomize()
   {
     local custom_user="$1"; shift
@@ -515,50 +517,88 @@ we will skip recustomization, but these other customizations are available:
       return 1
     fi
 
-    # prevent permission foul-ups.
-    my_user="$USER"
-      # here we definitely want the effective user name (in USER), since
-      # we don't want, say, fred (as logname) to own all of root's loading
-      # dock stuff.
-    chown -R "$my_user:$my_user" \
-        "$FEISTY_MEOW_LOADING_DOCK"/* "$FEISTY_MEOW_GENERATED_STORE"/* 2>/dev/null
-    continue_on_error "chowning feisty meow generated directories to $my_user"
-
+#hmmm: begin old custom section...
+#hmmm: here is where it starts being wrong for a link due to current borked copy approach.
+##    # prevent permission foul-ups.
+##    my_user="$USER"
+##      # here we definitely want the effective user name (in USER), since
+##      # we don't want, say, fred (as logname) to own all of root's loading
+##      # dock stuff.
+###hmmm: argh, seems a bit heavyweight to do chowning here!
+##    chown -R "$my_user:$my_user" \
+##        "$FEISTY_MEOW_LOADING_DOCK"/* "$FEISTY_MEOW_GENERATED_STORE"/* 2>/dev/null
+##    continue_on_error "chowning feisty meow generated directories to $my_user"
+##
+##    regenerate >/dev/null
+##
+##    pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null
+##    incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom")"
+##
+##    local fail_message="\n
+##are the perl dependencies installed?  if you're on ubuntu or debian, try this:\n
+##    $(grep "apt.*perl" $FEISTY_MEOW_APEX/readme.txt)\n
+##or if you're on cygwin, then try this (if apt-cyg is available):\n
+##    $(grep "apt-cyg.*perl" $FEISTY_MEOW_APEX/readme.txt)\n";
+##
+##    #echo "the incongruous files list is: $incongruous_files"
+##    # disallow a single character result, since we get "*" as result when nothing exists yet.
+##    if [ ${#incongruous_files} -ge 2 ]; then
+##      log_feisty_meow_event "cleaning unknown older overrides..."
+##      perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
+##      continue_on_error "running safedel.  $fail_message" 
+##    fi
+##    popd &>/dev/null
+##    log_feisty_meow_event "copying custom overrides for $custom_user"
+##    mkdir -p "$FEISTY_MEOW_LOADING_DOCK/custom" 2>/dev/null
+##    perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom"
+##    continue_on_error "running cpdiff.  $fail_message"
+##
+##    if [ -d "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" ]; then
+##      log_feisty_meow_event "copying custom scripts for $custom_user"
+###hmmm: could save output to show if an error occurs.
+##      rsync -avz "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" "$FEISTY_MEOW_LOADING_DOCK/custom/" &>/dev/null
+##      continue_on_error "copying customization scripts"
+##    fi
+##    regenerate
+##
+##    # prevent permission foul-ups, again.
+##    chown -R "$my_user:$my_user" \
+##        "$FEISTY_MEOW_LOADING_DOCK" "$FEISTY_MEOW_GENERATED_STORE" 2>/dev/null
+##    continue_on_error "once more chowning feisty meow generated directories to $my_user"
+#hmmm: begin old custom section.
+
+####
+
+#hmmm: begin new customization section...
+    # recreate the feisty meow loading dock.
     regenerate >/dev/null
-    pushd "$FEISTY_MEOW_LOADING_DOCK/custom" &>/dev/null
-    incongruous_files="$(bash "$FEISTY_MEOW_SCRIPTS/files/list_non_dupes.sh" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom")"
-
-    local fail_message="\n
-are the perl dependencies installed?  if you're on ubuntu or debian, try this:\n
-    $(grep "apt.*perl" $FEISTY_MEOW_APEX/readme.txt)\n
-or if you're on cygwin, then try this (if apt-cyg is available):\n
-    $(grep "apt-cyg.*perl" $FEISTY_MEOW_APEX/readme.txt)\n";
-
-    #echo "the incongruous files list is: $incongruous_files"
-    # disallow a single character result, since we get "*" as result when nothing exists yet.
-    if [ ${#incongruous_files} -ge 2 ]; then
-      log_feisty_meow_event "cleaning unknown older overrides..."
-      perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" $incongruous_files
-      continue_on_error "running safedel.  $fail_message" 
+
+    # jump into the loading dock and make our custom link.
+    pushd "$FEISTY_MEOW_LOADING_DOCK" &>/dev/null
+    if [ -h custom ]; then
+      # there's an existing link, so remove it.
+      \rm custom
+    fi
+    if [ -h custom -o -d custom -o -f custom ]; then
+      echo "
+Due to an over-abundance of caution, we are not going to remove an unexpected
+'custom' object in the file system.  This is located here:
+  $(pwd)
+"
+      ls -al .
+      return 1
     fi
+
+    # create the custom folder as a link to the customizations.
+    ln -s "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" custom
+
     popd &>/dev/null
-    log_feisty_meow_event "copying custom overrides for $custom_user"
-    mkdir -p "$FEISTY_MEOW_LOADING_DOCK/custom" 2>/dev/null
-    perl "$FEISTY_MEOW_SCRIPTS/text/cpdiff.pl" "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" "$FEISTY_MEOW_LOADING_DOCK/custom"
-    continue_on_error "running cpdiff.  $fail_message"
 
-    if [ -d "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" ]; then
-      log_feisty_meow_event "copying custom scripts for $custom_user"
-#hmmm: could save output to show if an error occurs.
-      rsync -avz "$FEISTY_MEOW_SCRIPTS/customize/$custom_user/scripts" "$FEISTY_MEOW_LOADING_DOCK/custom/" &>/dev/null
-      continue_on_error "copying customization scripts"
-    fi
+    # now take into account all the customizations by regenerating the feisty meow environment.
     regenerate
+#hmmm: end new customization section.
 
-    # prevent permission foul-ups, again.
-    chown -R "$my_user:$my_user" \
-        "$FEISTY_MEOW_LOADING_DOCK" "$FEISTY_MEOW_GENERATED_STORE" 2>/dev/null
-    continue_on_error "once more chowning feisty meow generated directories to $my_user"
+####
 
     restore_terminal_title
   }
index dbae6f4454b6e599474df55b39a21bd6f55765ef..faf9e827924de944dd0f57c35100aa09771afed7 100644 (file)
@@ -92,17 +92,14 @@ sub rebuild_script_aliases {
   }
   if (length($DEBUG_FEISTY_MEOW)) {
     print "using these alias files:\n";
-#print "HEY IS THIS PROBLEM CHILD?\n";
     foreach $i (@ALIAS_DEFINITION_FILES) {
       local $base_of_dir = &basename(&dirname($i));
       local $basename = &basename($i);
       print "  $base_of_dir/$basename\n";
     }
-#print "WAS PROBLEM CHILD ABOVE HERE?\n";
   }
 
   # write the aliases for sh and bash scripts.
-
   local $GENERATED_ALIAS_FILE = "$FEISTY_MEOW_LOADING_DOCK/fmc_core_and_custom_aliases.sh";
   if (length($DEBUG_FEISTY_MEOW)) {
     print "writing generated aliases in $GENERATED_ALIAS_FILE...\n";
index cf1e1b0f68fef362066e74477ca46e2a43188f67..c06745755242604a15c302b7fc1ef906417122bd 100644 (file)
@@ -54,9 +54,11 @@ PERL5LIB=$PERLLIB
 # make toast out of generated files right away, but leave any custom scripts.
 find "$FEISTY_MEOW_LOADING_DOCK" -maxdepth 1 -type f -exec perl "$FEISTY_MEOW_SCRIPTS/files/safedel.pl" "{}" ';'
 # &>/dev/null
-if [ ! -d "$FEISTY_MEOW_LOADING_DOCK/custom" ]; then
-  mkdir "$FEISTY_MEOW_LOADING_DOCK/custom"
-fi
+
+## #no, old:
+## if [ ! -d "$FEISTY_MEOW_LOADING_DOCK/custom" ]; then
+##   mkdir "$FEISTY_MEOW_LOADING_DOCK/custom"
+## fi
 
 # just a variable we use in here to refer to the generated variables file.
 FEISTY_MEOW_VARIABLES_LOADING_FILE="$FEISTY_MEOW_LOADING_DOCK/fmc_variables.sh"
index f6ddb3d2a256b394e9e8e12af3bc59bde5d18d78..bbd14eea19a9689cd258bc9d2fe2fc5e4d7b01cf 100644 (file)
@@ -8,8 +8,8 @@ feisty meow environment.
 user customization folder organization
 ======================================
 
-the user's optional custom folder is located at:
-echo $FEISTY_MEOW_SCRIPTS/customize/$(logname)
+the user's optional custom folder is usually located at:
+  $FEISTY_MEOW_SCRIPTS/customize/$(logname)
 
 the top-level of the customization folder can store:
 
@@ -26,10 +26,10 @@ custom script aliases
 
 there is also a facility for adding aliases automatically for any custom
 scripts that have been developed by the user.  these join the other aliases
-provided by the feisty meow environment.
+that are already provided by the feisty meow environment.
 
 store any custom scripts in the folder:
-$FEISTY_MEOW_SCRIPTS/customize/$(logname)/scripts
+  $FEISTY_MEOW_SCRIPTS/customize/$(logname)/scripts
 
 any scripts in that folder (or in a directory under that folder) will
 automatically be turned into aliases.
index 869370bebf03415f0168434196b60658fff1255e..4384a7dfef4be58c86e23ef81cbd2f3990cbd66d 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/bash
 # this script makes a tunnel for fred's SMTP traffic.
 
-#hmmm: move this script to fred customized stuff
+#hmmm: move this script to fred's custom stuff
 
 TUNNEL_USER_PLUS_HOST="fred@serene.feistymeow.org"
 TUNNEL_LINK="-L 14008:localhost:25"