Merge pull request #452 from espidev/master
Change detecting sudo priviliges to check if process euid is 0
This commit is contained in:
commit
75ce383207
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ builtins.howdy_user = args.user
|
||||||
|
|
||||||
# Check if we have rootish rights
|
# Check if we have rootish rights
|
||||||
# This is this far down the file so running the command for help is always possible
|
# This is this far down the file so running the command for help is always possible
|
||||||
if os.getenv("SUDO_USER") is None:
|
if not os.geteuid()==0:
|
||||||
print("Please run this command as root:\n")
|
print("Please run this command as root:\n")
|
||||||
print("\tsudo howdy " + " ".join(sys.argv[1:]))
|
print("\tsudo howdy " + " ".join(sys.argv[1:]))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue