diff options
Diffstat (limited to 'lcm')
-rwxr-xr-x | lcm/docker/build_image.sh | 2 | ||||
-rw-r--r-- | lcm/pom.xml | 4 | ||||
-rwxr-xr-x | lcm/run.sh | 13 | ||||
-rwxr-xr-x | lcm/stop.sh | 4 |
4 files changed, 11 insertions, 12 deletions
diff --git a/lcm/docker/build_image.sh b/lcm/docker/build_image.sh index fd15c98e..8f104cf1 100755 --- a/lcm/docker/build_image.sh +++ b/lcm/docker/build_image.sh @@ -6,7 +6,7 @@ cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" ORG="onap" -VERSION="1.3.2" +VERSION="1.3.3" PROJECT="vfc" IMAGE="vnflcm" DOCKER_REPOSITORY="nexus3.onap.org:10003" diff --git a/lcm/pom.xml b/lcm/pom.xml index 2f7fc6a3..91a6b892 100644 --- a/lcm/pom.xml +++ b/lcm/pom.xml @@ -18,12 +18,12 @@ <parent> <groupId>org.onap.vfc.gvnfm.vnflcm</groupId> <artifactId>vfc-gvnfm-vnflcm</artifactId> - <version>1.3.2-SNAPSHOT</version> + <version>1.3.3-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.onap.vfc.gvnfm.vnflcm.lcm</groupId> <artifactId>vfc-gvnfm-vnflcm-lcm</artifactId> - <version>1.3.2-SNAPSHOT</version> + <version>1.3.3-SNAPSHOT</version> <packaging>pom</packaging> <name>vfc-gvnfm-vnflcm-lcm</name> <properties> @@ -17,12 +17,11 @@ if [ ! -x $logDir ]; then mkdir -p $logDir fi -# nohup python manage.py runserver 0.0.0.0:8801 > /dev/null & +nohup python manage.py runserver 0.0.0.0:8801 > /dev/null & # nohup uwsgi --http :8801 -t 120 --module lcm.wsgi --master --processes 4 & -if [ "${SSL_ENABLED}" = "true" ]; then - nohup uwsgi --https :8801,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module lcm.wsgi --master --processes 4 & -else - nohup uwsgi --http :8801 -t 120 --enable-threads --module lcm.wsgi --master --processes 4 & -fi - +# if [ "${SSL_ENABLED}" = "true" ]; then +# nohup uwsgi --https :8801,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --enable-threads --module lcm.wsgi --master --processes 4 & +# else +# nohup uwsgi --http :8801 -t 120 --enable-threads --module lcm.wsgi --master --processes 4 & +# fi diff --git a/lcm/stop.sh b/lcm/stop.sh index ecea10ee..004fb0bc 100755 --- a/lcm/stop.sh +++ b/lcm/stop.sh @@ -13,5 +13,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -# ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $1}' | xargs kill -9 -ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
\ No newline at end of file +ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $1}' | xargs kill -9 +# ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
\ No newline at end of file |