aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorRenato Botelho do Couto <renato@netgate.com>2019-10-31 13:31:07 -0500
committerDave Wallace <dwallacelf@gmail.com>2019-11-05 21:08:59 +0000
commitead1e536d66d83b546528c32e2112085a97c8e13 (patch)
tree3e4836ecee7011a506444091aa22c24922e96713 /src/scripts
parent464e5e0bfebc71c646e5c182535898cc7018236b (diff)
misc: Fix python scripts shebang line
Type: fix Since CentOS 8, RPM build script doesn't accept '#!/usr/bin/env python' as a valid shebang line. It requires scripts to explicitly chose between python2 or python3. Change all to use python3 as suggested by Paul Vinciguerra. Depends-On: https://gerrit.fd.io/r/23170 Signed-off-by: Renato Botelho do Couto <renato@netgate.com> Change-Id: Ie72af9f60fd0609e07f05b70f8d96e738b2754d1
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/host-stack/cc_plots.py2
-rwxr-xr-xsrc/scripts/vnet/uri/dummy_app.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/host-stack/cc_plots.py b/src/scripts/host-stack/cc_plots.py
index ea2d4c94353..20f5bd6a3f1 100755
--- a/src/scripts/host-stack/cc_plots.py
+++ b/src/scripts/host-stack/cc_plots.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import sys
import re
diff --git a/src/scripts/vnet/uri/dummy_app.py b/src/scripts/vnet/uri/dummy_app.py
index 85ea4dcd474..d96a378a193 100755
--- a/src/scripts/vnet/uri/dummy_app.py
+++ b/src/scripts/vnet/uri/dummy_app.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
import socket
import sys