diff options
author | Dominik George <nik@naturalnet.de> | 2013-11-13 15:18:15 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2014-02-22 14:56:58 +0000 |
commit | c5738b11d91beeade620e282001074f6177c94c6 (patch) | |
tree | e2bd1caa802b1c78edb3b15be9b803e9af0aed53 /examples | |
parent | 8eeb111ebf65a54c26b7c9b8242d3077cf72342f (diff) | |
download | backupninja-c5738b11d91beeade620e282001074f6177c94c6.tar.gz backupninja-c5738b11d91beeade620e282001074f6177c94c6.tar.bz2 |
Added SIGN_PASSPHRASE support for dup handler.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example.dup | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/examples/example.dup b/examples/example.dup index ff8b70d..067b6b1 100644 --- a/examples/example.dup +++ b/examples/example.dup @@ -56,7 +56,7 @@ ## when set to yes, encryptkey variable must be set below; if you want to use ## two different keys for encryption and signing, you must also set the signkey -## variable below. +## variable (and probably signpassword) below. ## default is set to no, for backwards compatibility with backupninja <= 0.5. ## ## Default: @@ -77,14 +77,23 @@ ## Default: # signkey = -## password -## NB: neither quote this, nor should it contain any quotes, +## password used to unlock the encryption key +## NB: neither quote this, nor should it contain any quotes, ## an example setting would be: ## password = a_very_complicated_passphrase ## ## Default: # password = +## password used to unlock the signature key, used only if +## it differs from the encryption key +## NB: neither quote this, nor should it contain any quotes, +## an example setting would be: +## signpassword = a_very_complicated_passphrase +## +## Default: +# signpassword = + ###################################################### ## source section ## (where the files to be backed up are coming from) |