Changes between Version 13 and Version 14 of faq/admin/keyringer
- Timestamp:
- Jan 31, 2013, 11:51:32 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/admin/keyringer
v13 v14 26 26 keyringer mfpl init /path/to/keys gitosis@git.mayfirst.org:mfpl/keys 27 27 }}} 28 * Before you can successfully run the script, you must have all of the people in the "config/recipients" in you gpg keyring. To double checkyou can run:28 * Before you can successfully run the script, you must have all of the people in the "config/recipients" in you gpg keyring. To ensure they are all in your keyring you can run: 29 29 {{{ 30 # find your gpgid with 31 gpg --list-secret-key 32 gpg --list-sigs $YOURGPGID 33 }}} 34 and compare it against the list of people in the recipients. Since there are key fingerprints in the recipients files you can grab all the missing ones from the recipients file like so, replacing $KEYFINGERPRINT with the actual fingerprint you are missing: 35 {{{ 36 gpg --recv-keys $KEYFINGERPRINT 30 for fpr in $(grep -v '#' config/recipients/default |cut -d\ -f2); do gpg --recv-key $fpr; done 37 31 }}} 38 32 * Create a symlink to the pass script in the keys directory in your bin directory: