From 23e8c07868f7d2b706ef1c5bd8ec87c0aa8964a5 Mon Sep 17 00:00:00 2001 From: "ying.yunlong" Date: Mon, 26 Mar 2018 08:58:26 +0800 Subject: Add vfc-vnfres logDir check Change-Id: I05265f7e4dc8e649d23862a048d2a5e154b10481 Issue-ID: VFC-839 Signed-off-by: ying.yunlong --- res/run.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'res/run.sh') diff --git a/res/run.sh b/res/run.sh index d7f285e..aa15904 100755 --- a/res/run.sh +++ b/res/run.sh @@ -13,4 +13,15 @@ # See the License for the specific language governing permissions and # limitations under the License. +logDir="/var/log/onap/vfc-gvnfm-vnfres/" +if [ ! -x $logDir ]; then + mkdir -p $logDir +fi + nohup python manage.py runserver 0.0.0.0:8802 > /dev/null & + +while [ ! -f $logDir/runtime_res.log ]; do + sleep 1 +done + +tail -F $logDir/runtime_res.log -- cgit 1.2.3-korg