diff options
author | Florian Pritz <bluewind@xinu.at> | 2017-05-28 20:42:57 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2017-05-28 20:42:57 +0200 |
commit | 636b361a019ab4e4b4f3960d2aeca33b7be7a8cb (patch) | |
tree | 568742918b653b5d0b084bd3be0ff53b4f08ca72 /script | |
parent | 511041a2b76cea1f82686e221f28ce916e73ab4f (diff) | |
download | App-BorgRestore-636b361a019ab4e4b4f3960d2aeca33b7be7a8cb.tar.gz App-BorgRestore-636b361a019ab4e4b4f3960d2aeca33b7be7a8cb.tar.xz |
Add --adhoc
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'script')
-rwxr-xr-x | script/borg-restore.pl | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/script/borg-restore.pl b/script/borg-restore.pl index dff013f..923732b 100755 --- a/script/borg-restore.pl +++ b/script/borg-restore.pl @@ -17,6 +17,8 @@ borg-restore.pl [options] <path> --destination, -d <path> Restore backup to directory <path> --time, -t <timespec> Automatically find newest backup that is at least <time spec> old + --adhoc Do not use the cache, instead provide an + unfiltered list of archive to choose from Time spec: Select the newest backup that is at least <time spec> old. @@ -70,6 +72,14 @@ Automatically find the newest backup that is at least as old as I<timespec> specifies. I<timespec> is a string of the form "<I<number>><I<unit>>" with I<unit> being one of the following: s (seconds), min (minutes), h (hours), d (days), m (months = 31 days), y (year). Example: 5.5d +=item B<--adhoc> + +Disable usage of the database. In this mode, the list of archives is fetched +directly from borg at run time. Use this when the cache has not been created +yet and you want to restore a file without having to manually call borg +extract. Using this option will show all archives that borg knows about, even +if they do not contain the file that shall be restored. + =back =head1 CONFIGURATION @@ -183,7 +193,7 @@ sub main { $ENV{PATH} = App::BorgRestore::Helper::untaint($ENV{PATH}, qr(.*)); Getopt::Long::Configure ("bundling"); - GetOptions(\%opts, "help|h", "debug", "update-cache|u", "destination|d=s", "time|t=s") or pod2usage(2); + GetOptions(\%opts, "help|h", "debug", "update-cache|u", "destination|d=s", "time|t=s", "adhoc") or pod2usage(2); pod2usage(0) if $opts{help}; if ($opts{debug}) { @@ -207,6 +217,7 @@ sub main { my $path; my $timespec; my $destination; + my $archives; $path = $ARGV[0]; @@ -229,7 +240,11 @@ sub main { $log->debug("Asked to restore $backup_path to $destination"); - my $archives = $app->find_archives($backup_path); + if ($opts{adhoc}) { + $archives = $app->get_all_archives(); + } else { + $archives = $app->find_archives($backup_path); + } my $selected_archive; if (defined($timespec)) { |