diff options
Diffstat (limited to 'deploy/common.py')
-rw-r--r-- | deploy/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/common.py b/deploy/common.py index cc418b59b..787a21a1d 100644 --- a/deploy/common.py +++ b/deploy/common.py @@ -133,8 +133,8 @@ def commafy(comma_separated_list): def check_if_root(): - r = exec_cmd('whoami') - if r != 'root': + uid = os.getuid() + if uid != 0: err('You need be root to run this application') |