1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-31 04:14:37 +00:00

sops-install-secrets: log gpg fingerprint

This commit is contained in:
Jörg Thalheim 2020-07-14 13:41:32 +01:00
parent 8cdca9dd6d
commit cf34042dc2
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -1,6 +1,7 @@
package main
import (
"encoding/hex"
"encoding/json"
"errors"
"fmt"
@ -320,9 +321,12 @@ func importSSHKeys(keyPaths []string, gpgHome string) error {
if err != nil {
return err
}
if err := gpgKey.SerializePrivate(secring, nil); err != nil {
return fmt.Errorf("Cannot write secring: %s", err)
}
fmt.Printf("Imported %s with fingerprint %s", path, hex.EncodeToString(gpgKey.PrimaryKey.Fingerprint[:]))
}
return nil