close to perfection-ish with cleanup
authorFred Hamster <fred@gruntose.com>
Sat, 14 Dec 2024 23:12:45 +0000 (18:12 -0500)
committerFred Hamster <fred@gruntose.com>
Sat, 14 Dec 2024 23:12:45 +0000 (18:12 -0500)
seems to be working.

scripts/customize/fred/scripts/jobby/archie_grabber.sh

index 432ead0b620b2e75a562cd302fc1e7acc20dc445..9995a2877a1ba0df46bc488f3114a8850f570d66 100644 (file)
@@ -1,15 +1,21 @@
 #!/bin/bash
 
 # grabs a set of archives from a set of machines.
-# not tuned for re-use very much yet.
 
-#hmmm: could re-base this script on the newly available host_strider, which offers services this could really use.
+#hmmm: not tuned for re-use very much yet.
+# but this idea could be used for our home machines too... given some good parameter management.
 
 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
-# the archive directories will be known by their odd naming, which starts with the below.
-ARCHIVE_DIR_PREFIX="z_arch"
+if [ -z "$ARCHIVE_DIR_PREFIX" ]; then
+  # the archive directories will be known by their odd naming, which starts with the below.
+  # but we respect if people want to override that default archive directory name.
+  ARCHIVE_DIR_PREFIX="z_arch"
+fi
 
+# looks for archive directories within a DNS domain for a set of hosts.
+# if any archive dirs are found, they are copied to the local host and
+# then moved out of the way on the remote host.
 function grab_archies()
 {
   local domain_piece="$1"; shift
@@ -20,7 +26,7 @@ function grab_archies()
     local cp_outfile="$(mktemp /tmp/archie_grabber.XXXXXX)"
     netcp ${host}.${domain_piece}:${ARCHIVE_DIR_PREFIX}* . &> "$cp_outfile"
     retval=$?
-#hmmm: could display output on error.
+#hmmm: could display the output on error.  and we have a function for that...
     rm "$cp_outfile"
     if [ $retval -ne 0 ]; then
       echo "got return value $retval from copying ${ARCHIVE_DIR_PREFIX}* from ${host}.${domain_piece}; skipping it."
@@ -34,31 +40,21 @@ function grab_archies()
     # moved out of the way before the next run.
     host_strider $DATA_GRAVE_SHUFFLE_COMMAND ${domain_piece} ${host}
 
-#old code
-#    # the tricky code below just cleans up any archive dirs on the host by hiding them
-#    # under an old junk folder.  that can be cleaned up later as desired.
-#    ssh ${host}.${domain_piece} bash <<EOF
-#{ \
-#DATA_GRAVE="\$(mktemp -d \$HOME/old_junk.XXXXXX)"; \
-#mkdir -p \$DATA_GRAVE; \
-#echo "moving old $ARCHIVE_DIR_PREFIX* folders into \$DATA_GRAVE"; \
-#mv $ARCHIVE_DIR_PREFIX* \$DATA_GRAVE; \
-#}
-#EOF
-
     popd 
   done
 }
 
-####
+################
 
 # active part of the script, where we go out to a bunch of machines
 # to grab the archive folders.
 
 # we'll store the copied archives here.
+#hmmm: should make that directory selectable...
 mkdir -p $HOME/grabbing_archies
 pushd $HOME/grabbing_archies
 
+# write a script that we'll run remotely to clean up after we get a copy of the archives.
 export DATA_GRAVE_SHUFFLE_COMMAND="$(mktemp "$TMP/data_engraver.sh.XXXXXX")"
 echo '\
 #!/usr/bin/env bash
@@ -66,13 +62,12 @@ echo '\
 ARCHIVE_DIR_PREFIX="'$ARCHIVE_DIR_PREFIX'"
 DATA_GRAVE="$(mktemp -d $HOME/old_junk.XXXXXX)"
 mkdir -p $DATA_GRAVE
+cd  # jump to normal top of home.
 echo "moving old $ARCHIVE_DIR_PREFIX* folders into $DATA_GRAVE"
 mv $ARCHIVE_DIR_PREFIX* $DATA_GRAVE
 ' > $DATA_GRAVE_SHUFFLE_COMMAND
 
-#hmmm: got the script done above.  need to start calling the host strider for this.
-
-####
+################
 
 # these hosts are all in the ITS domain...
 
@@ -92,7 +87,7 @@ grab_archies "$domain" "$hostlist"
 hostlist="tower "
 grab_archies "$domain" "$hostlist"
 
-####
+################
 
 # these hosts are in the storage domain...
 
@@ -100,7 +95,7 @@ domain="storage.virginia.edu"
 hostlist="admin03 admin-hsz02-s admin-lab nasman02-s "
 grab_archies "$domain" "$hostlist"
 
-####
+################
 
 popd