diff options
author | Marco Platania <platania@research.att.com> | 2017-11-15 14:07:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-11-15 14:07:50 +0000 |
commit | 85a455d52ab680bad0e581f298608fc25cad029a (patch) | |
tree | 9d93ceb50964d56d2e91026add5b098f43f9b2f6 | |
parent | 37a126d19e2b213e5b79a2d985f84b6aedd1e3ac (diff) | |
parent | 640071642bb49c3aea5f4decedc213e5974f3a1a (diff) |
Merge "Fixed bug in v_brgemu_install.sh"
-rwxr-xr-x | vnfs/vCPE/scripts/v_brgemu_install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vnfs/vCPE/scripts/v_brgemu_install.sh b/vnfs/vCPE/scripts/v_brgemu_install.sh index f8824f97..e3a32fd5 100755 --- a/vnfs/vCPE/scripts/v_brgemu_install.sh +++ b/vnfs/vCPE/scripts/v_brgemu_install.sh @@ -326,10 +326,10 @@ do sleep 1 done EOF + chmod +x /opt/set_nat.sh -fi # endif BUILD_STATE != "build" -#Create script to run bind_nic.sh and set_nat.sh + #Create script to run bind_nic.sh and set_nat.sh cat > /opt/nat_service.sh << 'EOF' #! /bin/bash @@ -340,6 +340,8 @@ sleep 15 EOF chmod +x /opt/nat_service.sh +fi # endif BUILD_STATE != "build" + if [[ $BUILD_STATE != "done" ]] then |