Skip to content

Commit

Permalink
Drop -s from the launch script shebangs
Browse files Browse the repository at this point in the history
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: redhat-performance#599
Signed-off-by: Mario Limonciello <[email protected]>
  • Loading branch information
superm1 committed Feb 9, 2024
1 parent 95be4c0 commit 60fa339
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tuned-ppd.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3 -Es
#!/usr/bin/python3 -E
import sys
import os
import dbus
Expand Down
2 changes: 1 addition & 1 deletion tuned.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3 -Es
#!/usr/bin/python3 -E
#
# tuned: daemon for monitoring and adaptive tuning of system devices
#
Expand Down

0 comments on commit 60fa339

Please sign in to comment.