Drop -s from the launch script shebangs
Running `make install` as suggested by `INSTALL` will place all the python modules in /usr/local which won't be included in the search path when `-s` is used in the shebang. Closes: https://github.com/redhat-performance/tuned/issues/599 Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
This commit is contained in:
parent
95be4c0d68
commit
60fa3390c2
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3 -Es
|
||||
#!/usr/bin/python3 -E
|
||||
import sys
|
||||
import os
|
||||
import dbus
|
||||
|
|
|
|||
2
tuned.py
2
tuned.py
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3 -Es
|
||||
#!/usr/bin/python3 -E
|
||||
#
|
||||
# tuned: daemon for monitoring and adaptive tuning of system devices
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue