aboutsummaryrefslogtreecommitdiff
blob: b753591a175a522a30720f985f97693acbad116d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

echo -n 'Updating keyrings...'
if ! cd _data ; then
	echo "fail."
	exit 1
fi
URLS=(
	https://qa-reports.gentoo.org/output/service-keys.gpg
	https://qa-reports.gentoo.org/output/active-devs.gpg
	https://qa-reports.gentoo.org/output/all-devs.gpg
)
# this will do URL pipeline where possible
wget -T 60 -q -N "${URLS[@]}"
echo done.