aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes13
-rw-r--r--README15
-rw-r--r--lib/App/Glacier.pm2
3 files changed, 27 insertions, 3 deletions
diff --git a/Changes b/Changes
index 14bdca7..0af80bf 100644
--- a/Changes
+++ b/Changes
@@ -1 +1,14 @@
+2.10 2019-01-02
+
+* The "periodic" subcommand
+
+The new subcommand "periodic" is responsible for maintaining the job database.
+It finishes up pending glacier jobs, dowloading the results (both inventory
+listings and requested files) and removes expired jobs. It should be run as a
+cronjob.
+
+* When run on an EC2 instance, credentials can be obtained from the EC2 metadata
+
+* Directory validity is controlled using the LastInventoryDate field
+
2.00 2018-03-08
diff --git a/README b/README
index 09fd816..eeaa166 100644
--- a/README
+++ b/README
@@ -3,4 +3,4 @@ App::Glacier
-Command line utility for working with Amazon Glacier, an online file storage
-web service that provides storage for data archiving and backup.
+Command line utility for working with Amazon Glacier, an online service
+that provides storage for data archiving and backup.
@@ -43,2 +43,13 @@ Examples:
+Installation
+============
+
+1. perl Makefile.PL
+2. Run "make install" as root.
+3. Install the following cronjob:
+
+ */4 * * * * root glacier periodic
+
+The exact schedule is entirely up to you. Running periodic maintenance each
+4 hours gives a sane default.
diff --git a/lib/App/Glacier.pm b/lib/App/Glacier.pm
index 2954a23..d0bc75a 100644
--- a/lib/App/Glacier.pm
+++ b/lib/App/Glacier.pm
@@ -10,3 +10,3 @@ use Carp;
-our $VERSION = '2.00.90';
+our $VERSION = '2.10';

Return to:

Send suggestions and report system problems to the System administrator.