X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_user.pl;h=7abd79d3b19d350e054a8d6d79c54c5350f1a8c4;hb=c771d8f672e6f980d22c81be9df126f0574388d5;hp=ce21b03a0ea98869cc4f24466542a1d0689a6461;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/archival/snarf_user.pl b/scripts/archival/snarf_user.pl index ce21b03a..7abd79d3 100644 --- a/scripts/archival/snarf_user.pl +++ b/scripts/archival/snarf_user.pl @@ -28,24 +28,24 @@ 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"); # 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);