enable archive fingerprints

Change-Id: I7d80c09bda9849f2438d3076250017ebe9b9cb46
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
diff --git a/jenkins/common/install_common b/jenkins/common/install_common
old mode 100644
new mode 100755
index ef8322b..3304bae
--- a/jenkins/common/install_common
+++ b/jenkins/common/install_common
@@ -43,8 +43,6 @@
 
 key_location=$REPOSITORY_BASE/$RELEASE/$REPOSITORY_KEY
 
-# key pulled from https
-[[ "$key_location" =~ https ]] || key_location=${key_location/http/https}
 curl $key_location | apt-key add -
 
 add-apt-repository -y "deb $REPOSITORY_BASE/$RELEASE $REPOSITORY SO UI RO osmclient openvim"
diff --git a/jenkins/system/Jenkinsfile b/jenkins/system/Jenkinsfile
index c3dcc0a..8a04f23 100644
--- a/jenkins/system/Jenkinsfile
+++ b/jenkins/system/Jenkinsfile
@@ -80,6 +80,6 @@
     stage("Archive Artifacts") {
         sh "echo ${container_name} > build_version.txt"
         sh "tar -zcvf repo.tar.gz repo"
-        archiveArtifacts artifacts: "build_version.txt, repo.tar.gz"
+        archiveArtifacts artifacts: "build_version.txt, repo.tar.gz", fingerprint: true
     }
 }