summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2017-02-27 14:50:47 +0100
committerFlorian Pritz <bluewind@xinu.at>2017-02-27 14:50:47 +0100
commit6875a02e7475b8288c0044795c1b77adaf213ba9 (patch)
treef51b1ad324fb29c3cd9e62bf6e06ce7961e16243
parent4a3fc6e06f83a34c9ac219e31abbc6bae6cb8318 (diff)
downloadApp-BorgRestore-6875a02e7475b8288c0044795c1b77adaf213ba9.tar.gz
App-BorgRestore-6875a02e7475b8288c0044795c1b77adaf213ba9.tar.xz
Move debug() to main package
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r--lib/App/BorgRestore.pm26
-rwxr-xr-xscript/borg-restore.pl6
2 files changed, 26 insertions, 6 deletions
diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm
index 6e92c1c..746dffc 100644
--- a/lib/App/BorgRestore.pm
+++ b/lib/App/BorgRestore.pm
@@ -5,11 +5,7 @@ use warnings;
our $VERSION = "2.0.0";
-
-
-1;
-__END__
-
+=pod
=encoding utf-8
=head1 NAME
@@ -49,3 +45,23 @@ Florian Pritz E<lt>bluewind@xinu.atE<gt>
=cut
+sub new {
+ my $class = shift;
+ my $opts = shift;
+
+ my $self = {};
+ bless $self, $class;
+
+ $self->{opts} = $opts;
+
+ return $self;
+}
+
+sub debug {
+ my $self = shift;
+ say STDERR @_ if $self->{opts}->{debug};
+}
+
+
+1;
+__END__
diff --git a/script/borg-restore.pl b/script/borg-restore.pl
index f586ed5..7ec23e1 100755
--- a/script/borg-restore.pl
+++ b/script/borg-restore.pl
@@ -155,6 +155,7 @@ See gpl-3.0.txt for the full license text.
use v5.10;
+use App::BorgRestore;
use App::BorgRestore::Borg;
use App::BorgRestore::DB;
use App::BorgRestore::Helper;
@@ -176,9 +177,10 @@ use Time::HiRes;
my %opts;
my %db;
+my $app;
sub debug {
- say STDERR @_ if $opts{debug};
+ $app->debug(@_);
}
sub find_archives {
@@ -541,6 +543,8 @@ sub main {
GetOptions(\%opts, "help|h", "debug", "update-cache|u", "destination|d=s", "time|t=s") or pod2usage(2);
pod2usage(0) if $opts{help};
+ $app = App::BorgRestore->new(\%opts);
+
if ($opts{"update-cache"}) {
update_cache();
return 0;