From: Silvio Rhatto Date: Fri, 23 Aug 2024 16:09:25 +0000 (-0300) Subject: Fix: improved README (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=b31f6637fe2ac0836660a2a3f669ff04d22661f3;p=puppet-backup.git Fix: improved README (2) --- diff --git a/README.md b/README.md index 89483cf..4df15a3 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,10 @@ itself: you should do that manually or use another puppet module such as ### Remote backups using Borg - # remote encrypted backup from localhost to $node_name using Borg - backup::borg { "$node_name": - port => "$port", - } + # remote encrypted backup from localhost to $node_name using Borg + backup::borg { "$node_name": + port => "$port", + } ### Local encrypted backups pushed to remotes @@ -33,16 +33,16 @@ it's more reliable and fast than to let duplicity do all the job. #### Example with [duplicity][] and [rsync][] - # local encrypted/signed backup - backup::duplicity { "localhost": - encryptkey => "$key_id", - password => "$key_password", - } + # local encrypted/signed backup + backup::duplicity { "localhost": + encryptkey => "$key_id", + password => "$key_password", + } - # remote backup of previously encrypted/signed backup sent to $node_name - backup::rsync { "$node_name": - port => "$port", - } + # remote backup of previously encrypted/signed backup sent to $node_name + backup::rsync { "$node_name": + port => "$port", + } * The first definition will keep local encrypted/signed backups using duplicity at `/var/backups/duplicity`. @@ -52,16 +52,16 @@ it's more reliable and fast than to let duplicity do all the job. #### Example with [duplicity][] and [rdiff-backup][] - # local encrypted/signed backup - backup::duplicity { "localhost": - encryptkey => "$key_id", - password => "$key_password", - } + # local encrypted/signed backup + backup::duplicity { "localhost": + encryptkey => "$key_id", + password => "$key_password", + } - # remote backup of previously encrypted/signed backup sent to $node_name - backup::rdiff { "$node_name": - port => "$port", - } + # remote backup of previously encrypted/signed backup sent to $node_name + backup::rdiff { "$node_name": + port => "$port", + } [duplicity]: https://duplicity.gitlab.io/ [rdiff-backup]: https://rdiff-backup.net/