Fix hashbang in vCPE Python scripts 39/96239/1
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>
Wed, 25 Sep 2019 14:37:05 +0000 (16:37 +0200)
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>
Wed, 25 Sep 2019 14:37:05 +0000 (16:37 +0200)
Change-Id: Id2b7ec151e1a006a5a85b8544e478fd9cf282715
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Issue-ID: TEST-220

12 files changed:
test/vcpe/cleanvGMUX.py
test/vcpe/config_sdnc_so.py
test/vcpe/csar_parser.py
test/vcpe/get_info.py
test/vcpe/healthcheck-k8s.py
test/vcpe/loop.py
test/vcpe/preload.py
test/vcpe/sdcutils.py
test/vcpe/soutils.py
test/vcpe/vcpe.py
test/vcpe/vcpe_custom_service.py
test/vcpe/vcpecommon.py

index 8b2751f..f526953 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import sys
 import logging
index e9d642a..46d4c1c 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import logging
 from vcpecommon import *
index f101364..7046070 100755 (executable)
@@ -1,4 +1,5 @@
-#! /usr/bin/python
+#!/usr/bin/env python
+
 import os
 import zipfile
 import shutil
index 5b0c687..2d52a07 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import time
 import logging
index 67a1981..2416031 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import argparse
 import json
index d024396..3dc1948 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import time
 import logging
index f4aafbe..7a3b9aa 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import requests
 import json
index 2cf2a64..a6f6a50 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import sys
 import logging
index 734b793..7ab4290 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import sys
 import logging
index dd286bd..49fc0e4 100755 (executable)
@@ -1,8 +1,7 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import logging
-logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s')
-#logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s')
+logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s')
 
 import sys
 from vcpecommon import *
index 36012f7..e2681fd 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/env python
 
 import os
 import requests
index 78085fc..1f1c828 100755 (executable)
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+
 import json
 import logging
 import os