diff options
author | intrigeri <intrigeri@boum.org> | 2005-08-20 15:37:57 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2005-08-20 15:37:57 +0000 |
commit | 6b6154879b591c79750b329f3ecce9a074de5cb3 (patch) | |
tree | 31d53c48c1d172bb423d7ce9f4420a2a730fb133 /etc/backup.d | |
parent | bfe530dc59b9cec4a0cbdfdaafb5addb0e4484b2 (diff) | |
download | backupninja-6b6154879b591c79750b329f3ecce9a074de5cb3.tar.gz backupninja-6b6154879b591c79750b329f3ecce9a074de5cb3.tar.bz2 |
Security fix: duplicity handler used to put the gpg passphase on the command line.
Diffstat (limited to 'etc/backup.d')
-rw-r--r-- | etc/backup.d/example.dup | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/backup.d/example.dup b/etc/backup.d/example.dup index 37ca92e..cd64dd5 100644 --- a/etc/backup.d/example.dup +++ b/etc/backup.d/example.dup @@ -15,7 +15,8 @@ nicelevel = 19 [gpg] # passphrase needed to unlock the GnuPG key -password = "a_very_complicated_passphrase" +# NB: do not quote it, and it should not contain any quote +password = a_very_complicated_passphrase # default is no, for backward compatibility with backupninja <= 0.5. # when set to yes, encryptkey option must be set below. |