From: Sebastian Pipping Date: Wed, 26 Jan 2011 08:32:38 +0000 (+0100) Subject: docs: Fix sample call to GnuPG (reported by Fabio Coatti) X-Git-Tag: v3.4.12.5~1^2~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d4266f7e873827e9998eb64d8a5e70b220a257ee;p=genkernel.git docs: Fix sample call to GnuPG (reported by Fabio Coatti) --- diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt index 1a9fe1f..cd276d2 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 c128a5e..9e82c53 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')