Unverified Commit 66e0438d authored by Gabriel Corral's avatar Gabriel Corral Committed by GitHub
Browse files

fix(archlinux): update URL and key server in `pacmanallkeys` (#9569)

- Added follow redirects curl flag to fix the 301 response
- Updated trusted users URL format
- Changed from `pgp.mit.edu` keyserver to `keyserver.ubuntu.com` keyserver
parent 9e5f280f
......@@ -188,8 +188,8 @@ function pacdisowned() {
}
function pacmanallkeys() {
curl -s https://www.archlinux.org/people/{developers,trustedusers}/ | \
awk -F\" '(/pgp.mit.edu/) { sub(/.*search=0x/,""); print $1}' | \
curl -sL https://www.archlinux.org/people/{developers,trusted-users}/ | \
awk -F\" '(/keyserver.ubuntu.com/) { sub(/.*search=0x/,""); print $1}' | \
xargs sudo pacman-key --recv-keys
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment