Merge pull request #27184 from tiborvass/gnupg-debian-stretch

install: fix debian stretch
This commit is contained in:
Victor Vieux 2016-10-06 14:20:03 -07:00 коммит произвёл GitHub
Родитель 5ee2c2a647 047264763a
Коммит 2fd674a00f
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -440,6 +440,11 @@ do_install() {
( set -x; $sh_c 'sleep 3; apt-get install -y -q curl ca-certificates' )
curl='curl -sSL'
fi
if [ ! -e /usr/bin/gpg ]; then
apt_get_update
( set -x; $sh_c 'sleep 3; apt-get install -y -q gnupg2 || apt-get install -y -q gnupg' )
fi
(
set -x
for key_server in $key_servers ; do