X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Ffull_install_osm.sh;h=979f604e18fdbffaf19a1566d935b7d8749bcce0;hb=6c63e2d0a610f0acd9dca1378d4c3cd05be28b24;hp=c1d6c28bd44046ca8d5b70fe35253d0dc7299847;hpb=da89ee7ab8a3aa9b20737bb41a3822304ad17712;p=osm%2Fdevops.git diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index c1d6c28b..979f604e 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -132,6 +132,19 @@ function remove_network() { sg docker -c "docker network rm net${stack}" } +function remove_iptables() { + stack=$1 + if [ -z "$OSM_VCA_HOST" ]; then + OSM_VCA_HOST=`sg lxd -c "juju show-controller ${stack}"|grep api-endpoints|awk -F\' '{print $2}'|awk -F\: '{print $1}'` + [ -z "$OSM_VCA_HOST" ] && FATAL "Cannot obtain juju controller IP address" + fi + + if sudo iptables -t nat -C PREROUTING -p tcp -m tcp --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST; then + sudo iptables -t nat -D PREROUTING -p tcp -m tcp --dport 17070 -j DNAT --to-destination $OSM_VCA_HOST + sudo netfilter-persistent save + fi +} + function remove_stack() { stack=$1 if sg docker -c "docker stack ps ${stack}" ; then @@ -202,6 +215,7 @@ EONG remove_volumes $OSM_STACK_NAME remove_network $OSM_STACK_NAME fi + remove_iptables $OSM_STACK_NAME echo "Removing $OSM_DOCKER_WORK_DIR" $WORKDIR_SUDO rm -rf $OSM_DOCKER_WORK_DIR sg lxd -c "juju destroy-controller --destroy-all-models --yes $OSM_STACK_NAME" @@ -568,7 +582,7 @@ function install_osmclient(){ sudo apt-get update sudo apt-get install -y python3-pip sudo -H LC_ALL=C python3 -m pip install -U pip - sudo -H LC_ALL=C python3 -m pip install -U python-magic + sudo -H LC_ALL=C python3 -m pip install -U python-magic pyangbind sudo apt-get install -y python3-osm-im python3-osmclient #sed 's,OSM_SOL005=[^$]*,OSM_SOL005=True,' -i ${HOME}/.bashrc #echo 'export OSM_HOSTNAME=localhost' >> ${HOME}/.bashrc