Switch to hkps:// :443
This commit is contained in:
parent
d3a75ff459
commit
2f1db96732
1 changed files with 8 additions and 8 deletions
|
|
@ -93,17 +93,17 @@ then
|
||||||
cp trusted.local.gpg "${LOCAL_APT}/etc/trusted.gpg"
|
cp trusted.local.gpg "${LOCAL_APT}/etc/trusted.gpg"
|
||||||
else
|
else
|
||||||
# Trisquel key
|
# Trisquel key
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B4EFB9F38D8AEBF1 > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys B4EFB9F38D8AEBF1 > /dev/null
|
||||||
# Ubuntu gpg keys
|
# Ubuntu gpg keys
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 40976EAF437D05B5 > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 40976EAF437D05B5 > /dev/null
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3B4FE6ACC0B21F32 > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 3B4FE6ACC0B21F32 > /dev/null
|
||||||
# Debian gpg keys
|
# Debian gpg keys
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 9D6D8F6BC857C906 > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 9D6D8F6BC857C906 > /dev/null
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8B48AD6246925553 > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 8B48AD6246925553 > /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Also import the repository key optionally listed in the helper
|
# Also import the repository key optionally listed in the helper
|
||||||
[ "1$REPOKEY" != "1" ] && apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 $REPOKEY
|
[ "1$REPOKEY" != "1" ] && apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkps://keyserver.ubuntu.com:443 $REPOKEY
|
||||||
|
|
||||||
cat << EOF > ${LOCAL_APT}/etc/apt.sources.list
|
cat << EOF > ${LOCAL_APT}/etc/apt.sources.list
|
||||||
deb-src $MIRROR $UPSTREAM main universe
|
deb-src $MIRROR $UPSTREAM main universe
|
||||||
|
|
@ -127,13 +127,13 @@ apt-get source $PACKAGE --download-only -c ${LOCAL_APT}/etc/apt.conf
|
||||||
# Import the key for the package uploader
|
# Import the key for the package uploader
|
||||||
# Use the one listed in the helper if available, otherwise download the one listed in the dsc
|
# Use the one listed in the helper if available, otherwise download the one listed in the dsc
|
||||||
if [ "1$SIGNKEY" != "1" ] ; then
|
if [ "1$SIGNKEY" != "1" ] ; then
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 $SIGNKEY > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkps://keyserver.ubuntu.com:443 $SIGNKEY > /dev/null
|
||||||
gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc
|
gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc
|
||||||
else
|
else
|
||||||
if grep -q "BEGIN PGP SIGNATURE" *.dsc; then
|
if grep -q "BEGIN PGP SIGNATURE" *.dsc; then
|
||||||
KEY=$(gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc 2>&1 | grep "key ID" | sed 's/.*key ID //' || true)
|
KEY=$(gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc 2>&1 | grep "key ID" | sed 's/.*key ID //' || true)
|
||||||
[ -z "$KEY" ] && KEY=$(gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc 2>&1 | egrep ".SA key" | sed 's/.*.SA key //' || true)
|
[ -z "$KEY" ] && KEY=$(gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc 2>&1 | egrep ".SA key" | sed 's/.*.SA key //' || true)
|
||||||
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 $KEY > /dev/null
|
apt-key --keyring ${LOCAL_APT}/etc/trusted.gpg adv --recv-keys --keyserver hkps://keyserver.ubuntu.com:443 $KEY > /dev/null
|
||||||
gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc
|
gpgv --keyring ${LOCAL_APT}/etc/trusted.gpg *.dsc
|
||||||
else
|
else
|
||||||
echo WARNING! The dsc file is not gpg signed!
|
echo WARNING! The dsc file is not gpg signed!
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue