summaryrefslogtreecommitdiffstats
path: root/scripts/trex_daemon_server
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/trex_daemon_server')
-rwxr-xr-xscripts/trex_daemon_server4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/trex_daemon_server b/scripts/trex_daemon_server
index 514dbd2d..d7da283d 100755
--- a/scripts/trex_daemon_server
+++ b/scripts/trex_daemon_server
@@ -1,6 +1,6 @@
#!/usr/bin/python
-import os, sys, getpass
+import os, sys
import tempfile
from time import time, sleep
import subprocess, shlex, multiprocessing
@@ -11,7 +11,7 @@ def fail(msg):
print(msg)
sys.exit(-1)
-if getpass.getuser() != 'root':
+if os.getuid() != 0:
fail('Please run this program as root/with sudo')
sys.path.append(os.path.join('automation', 'trex_control_plane', 'server'))