diff options
-rw-r--r-- | README | 5 | ||||
-rwxr-xr-x | share/keyringer/genpair | 2 |
2 files changed, 1 insertions, 6 deletions
@@ -125,11 +125,6 @@ main and key folders into your keyring configuration: keyringer <keyring> preferences add PUPPET=/path/to/puppet/config keyringer <keyring> preferences add PUPPET_KEYS=/path/to/puppet/keys -Then you just need to issue the following command every time you have to create -keys for new nodes: - - keyringer <keyring> newkeys puppet - Configuration files, preferences and options -------------------------------------------- diff --git a/share/keyringer/genpair b/share/keyringer/genpair index a71e472..63a5bc6 100755 --- a/share/keyringer/genpair +++ b/share/keyringer/genpair @@ -58,7 +58,7 @@ EOF echo "Encrypting public key into keyringer..." gpg --armor --homedir "$TMPWORK" --export | keyringer_exec encrypt "$BASEDIR" "$FILE.pub" echo "Encrypting passphrase into keyringer..." - echo "Passphrase for $FILE: $passphrase" | keyringer_exec encrypt "$BASEDIR" "$FILE.passwd" + echo "Passphrase for $FILE: $passphrase" | keyringer_exec encrypt "$BASEDIR" "$FILE.passwd" # TODO: add outfiles into version control if [ ! -z "$OUTFILE" ]; then |