X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_opensim.pl;h=87f8ad70d81cfbd96a9b4270d3157222f3054c16;hb=8653c238297b3e5f540bf13dae4852981c68c6af;hp=94fd8bd76cdf3fe662164bff0ba344fc946a7069;hpb=7ef9f4fdbae698dff9a08189f616564d471abc45;p=feisty_meow.git diff --git a/scripts/archival/snarf_opensim.pl b/scripts/archival/snarf_opensim.pl index 94fd8bd7..87f8ad70 100644 --- a/scripts/archival/snarf_opensim.pl +++ b/scripts/archival/snarf_opensim.pl @@ -18,16 +18,17 @@ # version of the License. Please send any updates to "fred@gruntose.com". # ############################################################################### -require "importenv.pl"; require "shared_snarfer.pl"; +use Env qw(HOME); + &initialize_snarfer; # let the snarfer hook us in. # get the number attachment and increment it for the next use. local($number) = &retrieve_number("aa_backup"); # variables used throughout here. -local($snarf_file_base) = &snarf_prefix("opensim_config"); +local($snarf_file_base) = &snarf_prefix("config-opensim"); local($snarf_file) = &snarf_name($snarf_file_base, $number); # store the archive number in the file for retrieval on the other side. @@ -44,10 +45,10 @@ local($root) = &canonicalize(&glob_list("$HOME/opensim")); # snag the main config files. &backup_files($snarf_file_base, $number, $root, "bin", - ("OpenSim.ini", "Robust.ini", "OpenSim.exe.config", "Robust.exe.config")); + ("OpenSim.ini", "Robust*.ini", "OpenSim.exe.config", "Robust.exe.config")); # snag the configuration include file. -&backup_files($snarf_file_base, $number, $root, "bin/config-include", ("GridCommon.ini")); +&backup_files($snarf_file_base, $number, $root, "bin/config-include", ("GridCommon.ini", "osslEnable.ini")); # get the region definitions. &backup_hierarchy($snarf_file_base, $number, "$root", "bin/Regions");