Fix run and stop sh for vnfmgr 07/87307/1
authorfujinhua <fu.jinhua@zte.com.cn>
Thu, 9 May 2019 02:26:59 +0000 (10:26 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Thu, 9 May 2019 02:26:59 +0000 (10:26 +0800)
Change-Id: I55e852d8a3601d0b4a50cd98598a2e97a0550cce
Issue-ID: VFC-1306
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
mgr/run.sh
mgr/stop.sh

index b021a78..f65ce4f 100755 (executable)
@@ -25,9 +25,3 @@ if [ "${SSL_ENABLED}" = "true" ]; then
 else
     nohup uwsgi --http :8803 -t 120 --module mgr.wsgi --master --processes 4 &
 fi
-
-while [ ! -f $logDir/runtime_mgr.log ]; do
-    sleep 1
-done
-
-tail -F  $logDir/runtime_mgr.log
index 38ca0d6..db65996 100755 (executable)
@@ -13,5 +13,5 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# ps auxww | grep 'manage.py runserver 0.0.0.0:8803' | awk '{print $2}' | xargs kill -9
+# ps auxww | grep 'manage.py runserver 0.0.0.0:8803' | awk '{print $1}' | xargs kill -9
 ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9