Exemple #1
0
def ensure_perms():
    # Ensure we are running as root to start...
    if not sh.got_root():
        raise excp.PermException("Root access required")
Exemple #2
0
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)
Exemple #3
0
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)