summaryrefslogtreecommitdiff
path: root/scripts/scriptmgr.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scriptmgr.py')
-rwxr-xr-xscripts/scriptmgr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/scriptmgr.py b/scripts/scriptmgr.py
index 57fd7a46..e62b0642 100755
--- a/scripts/scriptmgr.py
+++ b/scripts/scriptmgr.py
@@ -74,7 +74,7 @@ def job_sort_cmp(j1, j2):
def launch_cmd(job, cmd):
if job['user']:
- cmd = 'sudo -u "%s" %s' % (job['user'], cmd)
+ cmd = 'sudo -nH -u "%s" %s' % (job['user'], cmd)
return os.system(cmd)
def full_path(job, fn):