From 316211f97358c5d8438a3150aec2e26ee87def78 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 10 May 2020 00:51:02 +0300 Subject: [PATCH] rc: add gpg-dkr-recv alias for Debian keyring key receiving It being only for @debian.org email holders, I am unlikely to have need of doing anything else than receiving keys, especially with https://keyring.debian.org/ instructions of not uploading anyone else's keys or their signatures as opposed to Ubuntu keyserver which is more public and required for Launchpad.net (if it supported Ed25519 keys)... Resolves: #68 --- rc/bashrc | 2 ++ rc/zshrc | 2 ++ 2 files changed, 4 insertions(+) diff --git a/rc/bashrc b/rc/bashrc index 7cbf3ba6..8ec6f946 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -498,6 +498,8 @@ alias linux-check-cpu-vulns="tail -n +1 /sys/devices/system/cpu/vulnerabilities/ # gpg web key directory lookup alias wkdlookup="gpg --auto-key-locate nodefault,wkd --locate-keys" +# Debian key server, Tor not necessary due to dirmngr config +alias gpg-dkr-recv="gpg --keyserver hkps://keyring.debian.org --recv-keys" # Ubuntu key server, Tor not necessary due to dirmngr config alias gpg-uks="gpg --keyserver hkps://keyserver.ubuntu.com" alias gpg-uks-recv="gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys" diff --git a/rc/zshrc b/rc/zshrc index 20d6d37a..f5f3eb33 100644 --- a/rc/zshrc +++ b/rc/zshrc @@ -476,6 +476,8 @@ alias linux-check-cpu-vulns="tail -n +1 /sys/devices/system/cpu/vulnerabilities/ # gpg web key directory lookup alias wkdlookup="gpg --auto-key-locate nodefault,wkd --locate-keys" +# Debian key server, Tor not necessary due to dirmngr config +alias gpg-dkr-recv="gpg --keyserver hkps://keyring.debian.org --recv-keys" # Ubuntu key server, Tor not necessary due to dirmngr config alias gpg-uks="gpg --keyserver hkps://keyserver.ubuntu.com" alias gpg-uks-recv="gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys"