Skip to content

Commit

Permalink
Merge pull request moby#27184 from tiborvass/gnupg-debian-stretch
Browse files Browse the repository at this point in the history
install: fix debian stretch
  • Loading branch information
vieux authored Oct 6, 2016
2 parents 5ee2c2a + 0472647 commit 2fd674a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hack/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2fd674a

Please sign in to comment.