diff options
Diffstat (limited to 'servicegateway/deployment/src/main')
-rw-r--r-- | servicegateway/deployment/src/main/release/bin/start.sh | 4 | ||||
-rw-r--r-- | servicegateway/deployment/src/main/release/bin/stop.sh | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/servicegateway/deployment/src/main/release/bin/start.sh b/servicegateway/deployment/src/main/release/bin/start.sh index 235b3197..521ef3b7 100644 --- a/servicegateway/deployment/src/main/release/bin/start.sh +++ b/servicegateway/deployment/src/main/release/bin/start.sh @@ -14,6 +14,8 @@ # limitations under the License. #******************************************************************************* #!/bin/bash +mkdir logs +mkdir temp cd .. export CATALINA_BASE=$(cd `dirname $0`; pwd) -catalina.sh start
\ No newline at end of file +$CATALINA_HOME/bin/catalina.sh start
\ No newline at end of file diff --git a/servicegateway/deployment/src/main/release/bin/stop.sh b/servicegateway/deployment/src/main/release/bin/stop.sh index bcc60433..365da00d 100644 --- a/servicegateway/deployment/src/main/release/bin/stop.sh +++ b/servicegateway/deployment/src/main/release/bin/stop.sh @@ -16,4 +16,4 @@ #!/bin/bash cd .. export CATALINA_BASE=$(cd `dirname $0`; pwd) -catalina.sh stop
\ No newline at end of file +$CATALINA_HOME/bin/catalina.sh stop
\ No newline at end of file |