aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2011-01-26 09:32:38 +0100
committerSebastian Pipping <sebastian@pipping.org>2011-01-26 13:36:47 +0100
commitd4266f7e873827e9998eb64d8a5e70b220a257ee (patch)
tree0e996727b2100608e506e4196cd450c62ddc8951
parentBump version to 3.4.12.1 (diff)
downloadgenkernel-d4266f7e873827e9998eb64d8a5e70b220a257ee.tar.gz
genkernel-d4266f7e873827e9998eb64d8a5e70b220a257ee.tar.bz2
genkernel-d4266f7e873827e9998eb64d8a5e70b220a257ee.zip
docs: Fix sample call to GnuPG (reported by Fabio Coatti)
-rw-r--r--doc/genkernel.8.txt2
-rw-r--r--maintenance/docmatcher.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index 1a9fe1fa..cd276d2b 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -283,7 +283,7 @@ INITIALIZATION
*--gpg*::
Add support for GnuPG 1.x, the portable standalone branch of GnuPG.
A key can be made from
- `gpg --encrypt --symmetric /path/to/LUKS-key > /path/to/LUKS-key.gpg` .
+ `gpg --symmetric -o /path/to/LUKS-key.gpg /path/to/LUKS-key` .
After that, re-point the *root_key* argument to the new .gpg file.
*--no-busybox*::
diff --git a/maintenance/docmatcher.py b/maintenance/docmatcher.py
index c128a5e7..9e82c532 100644
--- a/maintenance/docmatcher.py
+++ b/maintenance/docmatcher.py
@@ -21,7 +21,7 @@ for app in ('DEVICE_MAPPER', 'UNIONFS_FUSE', 'BUSYBOX', 'DMRAID', 'LVM', 'ISCSI'
EXTRA_VARIABLES = tuple(EXTRA_VARIABLES)
IGNORE_OPTIONS = ('help', 'version')
-_GPG_PARAMETERS = ('encrypt', 'symmetric')
+_GPG_PARAMETERS = ('symmetric', )
IGNORE_PARAMETERS = _GPG_PARAMETERS
DEPRECATED_PARAMETERS = ('lvm2', 'evms2', 'gensplash', 'gensplash-res')