X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_user.pl;h=2e6d6f1942de0719292d6dcd5f52bd4f11aa50c3;hb=f7fde7875802d7cd161b0118ebe791d9b97ad3d9;hp=ce21b03a0ea98869cc4f24466542a1d0689a6461;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/archival/snarf_user.pl b/scripts/archival/snarf_user.pl index ce21b03a..2e6d6f19 100644 --- a/scripts/archival/snarf_user.pl +++ b/scripts/archival/snarf_user.pl @@ -18,9 +18,10 @@ # version of the License. Please send any updates to "fred@gruntose.com". # ############################################################################### -require "importenv.pl"; require "shared_snarfer.pl"; +use Env qw(HOME USER); + &initialize_snarfer; # get the number we use and increment it for the next use. @@ -28,24 +29,27 @@ local($number) = &retrieve_number("aa_backup"); # variables for directory location to backup and the file to dump it in. local($root) = "$HOME"; -local($base) = snarf_prefix("$USER"); -local($snarf_file) = &snarf_name($base, $number); +local($snarf_file_base) = snarf_prefix("$USER"); +local($snarf_file) = &snarf_name($snarf_file_base, $number); # store the archive number in the file for retrieval on the other side. -&backup_number("aa_backup", $base, $number); +&backup_number("aa_backup", $snarf_file_base, $number); ############################################################################ # backup all the config info for kde. -&backup_hierarchy($base, $number, "$root", ".kde"); +&backup_hierarchy($snarf_file_base, $number, "$root", ".kde"); +# and get the config for gnome. +&backup_hierarchy($snarf_file_base, $number, "$root", ".local"); +&backup_hierarchy($snarf_file_base, $number, "$root", ".gnome*"); # get any dot files ending in "rc", or with "bash" or "profile" in them, or # that start with "x". -&backup_files($base, $number, $root, ".", +&backup_files($snarf_file_base, $number, $root, ".", ("*rc", ".*bash*", ".*profile*", ".x*", )); # get the ssh configuration files. -&backup_hierarchy($base, $number, "$root", ".ssh"); +&backup_hierarchy($snarf_file_base, $number, "$root", ".ssh"); # now rename the file so only the unpacker can access it. &rename_archive($snarf_file);