From 60fa3390c25a0ff8ba3b197d320e42402a20d452 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Fri, 9 Feb 2024 10:47:30 -0600 Subject: [PATCH] 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 --- tuned-ppd.py | 2 +- tuned.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tuned-ppd.py b/tuned-ppd.py index 14a0eda1e..0b15885a2 100755 --- a/tuned-ppd.py +++ b/tuned-ppd.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 -Es +#!/usr/bin/python3 -E import sys import os import dbus diff --git a/tuned.py b/tuned.py index 460482bfa..9bc823b41 100755 --- a/tuned.py +++ b/tuned.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 -Es +#!/usr/bin/python3 -E # # tuned: daemon for monitoring and adaptive tuning of system devices #