1
0
Fork 0

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:
Mario Limonciello 2024-02-09 10:47:30 -06:00
parent 95be4c0d68
commit 60fa3390c2
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 -Es
#!/usr/bin/python3 -E
import sys
import os
import dbus

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 -Es
#!/usr/bin/python3 -E
#
# tuned: daemon for monitoring and adaptive tuning of system devices
#