diff options
Diffstat (limited to 'vnfs/vFW/scripts/v_firewall_install_arm64.sh')
-rwxr-xr-x | vnfs/vFW/scripts/v_firewall_install_arm64.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vnfs/vFW/scripts/v_firewall_install_arm64.sh b/vnfs/vFW/scripts/v_firewall_install_arm64.sh index c97fa91f..e3c0d377 100755 --- a/vnfs/vFW/scripts/v_firewall_install_arm64.sh +++ b/vnfs/vFW/scripts/v_firewall_install_arm64.sh @@ -65,6 +65,12 @@ apt-get update apt-get install --allow-unauthenticated -y make wget openjdk-8-jdk gcc libcurl4-openssl-dev python-pip bridge-utils apt-transport-https ca-certificates pip install jsonschema +# Install fd.io certificate +HOST=nexus.fd.io +PORT=443 +TRUST_CERT_FILE="/etc/ssl/certs/ca-certificates.crt" +bash -c "echo -n | openssl s_client -showcerts -connect $HOST:$PORT 2>/dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' >> $TRUST_CERT_FILE" + # Download artifacts for virtual firewall mkdir /opt/honeycomb cd /opt |