Add connection check 79/20779/1
authorAreli Fuss <af732p@att.com>
Thu, 26 Oct 2017 11:08:33 +0000 (14:08 +0300)
committerAreli Fuss <af732p@att.com>
Thu, 26 Oct 2017 11:22:46 +0000 (14:22 +0300)
Add connection check before GPG key
as debugging build failure on snap

Change-Id: I71da085a6fe1e82fb210ec2582153a948557f8d8
Issue-Id: VVP-25
Signed-off-by: Areli Fuss <af732p@att.com>
Dockerfile
assets/setup

index 807a8cd..2c13134 100755 (executable)
@@ -1,4 +1,4 @@
-# ============LICENSE_START======================================================= 
+# ============LICENSE_START=======================================================
 # org.onap.vvp/gitlab
 # ===================================================================
 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
@@ -47,7 +47,8 @@ RUN apt-get update -q \
       apt-transport-https \
       vim \
       nano \
-      patch
+      patch \
+      curl
 
 # Copy assets
 COPY RELEASE /
index 8c431bc..ed42fc1 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/bash
-# ============LICENSE_START======================================================= 
+# ============LICENSE_START=======================================================
 # org.onap.vvp/gitlab
 # ===================================================================
 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
@@ -43,7 +43,20 @@ source /RELEASE
 
 # Download & Install GitLab
 echo "deb https://packages.gitlab.com/gitlab/${PACKAGECLOUD_REPO}/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/gitlab_${RELEASE_PACKAGE}.list
-wget -q -O - https://packages.gitlab.com/gpg.key | apt-key add -
+#wget -q -O - https://packages.gitlab.com/gpg.key | apt-key add -
+
+echo "####################################################"
+echo "[DBG] Test connection to https://packages.gitlab.com"
+sleep 3
+curl -s --head https://packages.gitlab.com  | head -n 1
+sleep 3
+echo "####################################################"
+
+echo "####################################################"
+echo "[DBG] Test Get key"
+curl -L https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey | apt-key add -
+echo "####################################################"
+
 apt-get update
 apt-get install -yq --no-install-recommends ${RELEASE_PACKAGE}=${RELEASE_VERSION}