diff options
| -rwxr-xr-x | repo/.gpg_keys/linux-zen-x86-64-v3 | 5 | ||||
| -rw-r--r-- | repo/.gpg_keys/qemu-user-static | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/repo/.gpg_keys/linux-zen-x86-64-v3 b/repo/.gpg_keys/linux-zen-x86-64-v3 index ef9aecf..372a7d0 100755 --- a/repo/.gpg_keys/linux-zen-x86-64-v3 +++ b/repo/.gpg_keys/linux-zen-x86-64-v3 @@ -1,6 +1,6 @@ #!/bin/bash #gpg --recv-keys --keyserver pgp.mit.edu 3B94A80E50A477C7 -curl https://keys.openpgp.org/vks/v1/by-fingerprint/A2FF3A36AAA56654109064AB19802F8B0D70FC30 | gpg --import +#curl https://keys.openpgp.org/vks/v1/by-fingerprint/A2FF3A36AAA56654109064AB19802F8B0D70FC30 | gpg --import cat << EOF | gpg --import -----BEGIN PGP PUBLIC KEY BLOCK----- @@ -38,4 +38,5 @@ opmol4iQla74OApQ9CP3mnjgHWcRUTacAB8L =aIqj -----END PGP PUBLIC KEY BLOCK----- EOF -echo "y\ny\n" | gpg --command-fd 0 --expert --local-user 4A0F0C8BC709ACA4341767FB243975C8DB9656B9 --edit-key A2FF3A36AAA56654109064AB19802F8B0D70FC30 sign +gpg --list-keys --fingerprint |grep pub -A 1|grep -Ev "pub|--"|tr -d ' ' \ + | awk 'BEGIN { FS = "\n" } ; { print $1":6:" } ' | gpg --import-ownertrust
\ No newline at end of file diff --git a/repo/.gpg_keys/qemu-user-static b/repo/.gpg_keys/qemu-user-static index bcf9e69..f098694 100644 --- a/repo/.gpg_keys/qemu-user-static +++ b/repo/.gpg_keys/qemu-user-static @@ -61,4 +61,5 @@ UwNZfgOz9PodfqUv4riMLczMmw3nwGZO/aJg0m6uWSWk =7vDu -----END PGP PUBLIC KEY BLOCK----- EOF -echo "y\ny\n" | gpg --command-fd 0 --expert --local-user 4A0F0C8BC709ACA4341767FB243975C8DB9656B9 --edit-key CEACC9E15534EBABB82D3FA03353C9CEF108B584 sign +gpg --list-keys --fingerprint |grep pub -A 1|grep -Ev "pub|--"|tr -d ' ' \ + | awk 'BEGIN { FS = "\n" } ; { print $1":6:" } ' | gpg --import-ownertrust
\ No newline at end of file |
