Add vfc-vnfres logDir check
[vfc/gvnfm/vnfres.git] / 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