diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index dadb85436..82900e58a 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -194,6 +194,9 @@ class Core(object): self.debug = self.doDebug or self.config['general']['debug_mode'] + if os.name != "nt" and self.config["general"]["renice"]: + os.system("renice %d %d" % (self.config["general"]["renice"], os.getpid()) ) + if self.config["permission"]["change_group"]: if os.name != "nt": |