Add vfc-vnfres logDir check 23/38323/1
authorying.yunlong <ying.yunlong@zte.com.cn>
Mon, 26 Mar 2018 00:58:26 +0000 (08:58 +0800)
committerying.yunlong <ying.yunlong@zte.com.cn>
Mon, 26 Mar 2018 00:58:26 +0000 (08:58 +0800)
Change-Id: I05265f7e4dc8e649d23862a048d2a5e154b10481
Issue-ID: VFC-839
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
res/run.sh

index d7f285e..aa15904 100755 (executable)
 # 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