def ensure_perms(): # Ensure we are running as root to start... if not sh.got_root(): raise excp.PermException("Root access required")
def ensure_perms(): # Ensure we are running as root to start... if not sh.got_root(): raise excp.PermException("Root access required") # Drop to usermode (which also ensures we can do this...) sh.user_mode(quiet=False)