summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md15
-rw-r--r--lib/App/BorgRestore.pm15
2 files changed, 28 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3e18b86..e6405fc 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,20 @@ App::BorgRestore - Restore paths from borg backups
# DESCRIPTION
-App::BorgRestore is ...
+App::BorgRestore is a restoration helper for borg.
+
+It maintains a cache of borg backup contents (path and latest modification
+time) and allows to quickly look up backups that contain a path. It further
+supports restoring a path from an archive. The archive to be used can also be
+automatically determined based on the age of the path.
+
+The cache has to be updated regularly, ideally after creating or removing
+backups.
+
+**borg-restore.pl** is a wrapper around this class that allows for simple CLI
+usage.
+
+This package uses [Log::Any](https://metacpan.org/pod/Log::Any) for logging.
# LICENSE
diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm
index 6d3d5c7..a424dff 100644
--- a/lib/App/BorgRestore.pm
+++ b/lib/App/BorgRestore.pm
@@ -35,7 +35,20 @@ App::BorgRestore - Restore paths from borg backups
=head1 DESCRIPTION
-App::BorgRestore is ...
+App::BorgRestore is a restoration helper for borg.
+
+It maintains a cache of borg backup contents (path and latest modification
+time) and allows to quickly look up backups that contain a path. It further
+supports restoring a path from an archive. The archive to be used can also be
+automatically determined based on the age of the path.
+
+The cache has to be updated regularly, ideally after creating or removing
+backups.
+
+B<borg-restore.pl> is a wrapper around this class that allows for simple CLI
+usage.
+
+This package uses L<Log::Any> for logging.
=head1 LICENSE