Example #1
0
def vps_open_all():
    from passwd import loadpw
    exist = loadpw()
    for i in vps_list_by_hostname():
        username = USERNAME%i.id_in_group
        if username not in exist:
            vps_new(i)
Example #2
0
def vps_open_all():
    from passwd import loadpw
    exist = loadpw()
    for i in vps_list_by_hostname():
        username = USERNAME % i.id_in_group
        if username not in exist:
            vps_new(i)
Example #3
0
print "(EXACTLY as is shown by the listing options):"

raw_ttyrec = raw_input("> ");

os.environ["PATH"] += os.pathsep + "/usr/local/bin"

player = "termplay"

if len(raw_ttyrec.split(" - ")) != 2:
    print "Invalid input!"
    sys.exit(1)

username = raw_ttyrec.split(" - ")[0]
ttyrecname = raw_ttyrec.split(" - ")[1]

passwddir = passwd.loadpw()

if username not in passwddir:
    print "Username not found!"
    sys.exit(1)

ttyrecdir = passwddir[username].home + "/ttyrecs"
found = False;

for root, dirs, files in os.walk(ttyrecdir):
    if root != ttyrecdir:
        continue
    
    for file in files:
        if file == ttyrecname:
            found = True
print "(EXACTLY as is shown by the listing options):"

raw_ttyrec = raw_input("> ")

os.environ["PATH"] += os.pathsep + "/usr/local/bin"

player = "termplay"

if len(raw_ttyrec.split(" - ")) != 2:
    print "Invalid input!"
    sys.exit(1)

username = raw_ttyrec.split(" - ")[0]
ttyrecname = raw_ttyrec.split(" - ")[1]

passwddir = passwd.loadpw()

if username not in passwddir:
    print "Username not found!"
    sys.exit(1)

ttyrecdir = passwddir[username].home + "/ttyrecs"
found = False

for root, dirs, files in os.walk(ttyrecdir):
    if root != ttyrecdir:
        continue

    for file in files:
        if file == ttyrecname:
            found = True