diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-18 16:31:17 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-21 23:48:18 +0000 |
commit | 88eeb55cade0caf1fbde24ec9012439b2a9d58c3 (patch) | |
tree | 44e769035bbb972f2eebd1c1e2f737d325b4a1d4 /boot/dns_install.sh | |
parent | 3b5d37e7412b3a9a1c0d0a9bfc79d7dcab5d3bef (diff) |
Retrieve boot scripts from new demo artifact zip
Remove use of the raw repo.
Remove nexus_repo parameter.
Add new nexus_artifact_repo parameter with default value.
Change-Id: Ib502a77010258c2a7a642cd375094b336d046174
Issue-ID: INT-504
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'boot/dns_install.sh')
-rw-r--r-- | boot/dns_install.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/boot/dns_install.sh b/boot/dns_install.sh index 52b65cf6..4bfdbff4 100644 --- a/boot/dns_install.sh +++ b/boot/dns_install.sh @@ -1,7 +1,6 @@ #!/bin/bash # Read configuration files -NEXUS_REPO=$(cat /opt/config/nexus_repo.txt) ARTIFACTS_VERSION=$(cat /opt/config/artifacts_version.txt) CLOUD_ENV=$(cat /opt/config/cloud_env.txt) @@ -60,10 +59,10 @@ apt-get install --allow-unauthenticated -y apt-transport-https ca-certificates w # Download script mkdir /etc/bind/zones -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/$ZONE_FILE -o /etc/bind/zones/db.simpledemo.openecomp.org -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/$ZONE_ONAP -o /etc/bind/zones/db.simpledemo.onap.org -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/$OPTIONS_FILE -o /etc/bind/named.conf.options -curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/named.conf.local -o /etc/bind/named.conf.local +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip $ZONE_FILE > /etc/bind/zones/db.simpledemo.openecomp.org +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip $ZONE_ONAP > /etc/bind/zones/db.simpledemo.onap.org +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip $OPTIONS_FILE > /etc/bind/named.conf.options +unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip named.conf.local > /etc/bind/named.conf.local |