Skip to content

Instantly share code, notes, and snippets.

@overplumbum
Created October 3, 2012 13:14
Show Gist options
  • Save overplumbum/3826834 to your computer and use it in GitHub Desktop.
Save overplumbum/3826834 to your computer and use it in GitHub Desktop.
Detects logged in user even under sudo
#!/usr/bin/env python
import os
import psutil
if __name__ == "__main__":
p = psutil.Process(os.getpid())
while p and p.username == 'root':
p = p.parent
print p.username if p else 'root'
#!/usr/bin/env python
from distutils.core import setup
setup(name='detect_active_login', scripts=['detect_active_login'], require=['psutil'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment