Change-Id: I247a1b2bab35bca35950172f41f47a5fe8040aa8
Issue-ID: VFC-839
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
# See the License for the specific language governing permissions and
# limitations under the License.
+logDir="/var/log/onap/vfc-gvnfm-vnfmgr/"
+if [ ! -x $logDir ]; then
+ mkdir -p $logDir
+fi
+
nohup python manage.py runserver 0.0.0.0:8803 > /dev/null &
+
+while [ ! -f $logDir/runtime_mgr.log ]; do
+ sleep 1
+done
+
+tail -F $logDir/runtime_mgr.log