docs: Fix sample call to GnuPG (reported by Fabio Coatti)
authorSebastian Pipping <sebastian@pipping.org>
Wed, 26 Jan 2011 08:32:38 +0000 (09:32 +0100)
committerSebastian Pipping <sebastian@pipping.org>
Wed, 26 Jan 2011 12:36:47 +0000 (13:36 +0100)
doc/genkernel.8.txt
maintenance/docmatcher.py

index 1a9fe1fa3879e1177b412edea996b9e5ea2d7dd2..cd276d2bfb6b57f6b16257764884e7bfabde6fdd 100644 (file)
@@ -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*::
index c128a5e774108cd7ec57b362ebaabe08c8a6a4a7..9e82c532b805121975b995655e5aadb00aa34d7d 100644 (file)
@@ -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')