23
23
# Script to create a new user. This can also be done through the
24
24
# administration interface.
25
# This script wraps common.makeuser.
26
# It also creates a unix account which common.makeuser does not.
27
# (This script may not be appropriate for production on a multi-node
29
34
# Import modules from the website is tricky since they're in the www
31
36
sys.path.append(os.path.join(os.getcwd(), 'www'))
33
38
import common.makeuser
35
if len(sys.argv) <= 1:
36
print "Usage: python makeuser.py <username>"
40
if len(sys.argv) <= 6:
41
print "Usage: python makeuser.py <username> <password> <nick> " \
42
"<fullname> <rolenm> <studentid>"
46
print "Must run makeuser.py as root."
39
49
username = sys.argv[1]
50
password = sys.argv[2]
52
fullname = sys.argv[4]
54
studentid = sys.argv[6]
42
common.makeuser.makeuser(username)
57
# Resolve the user's username into a UID
58
# Create the user if it does not exist
60
(_,_,uid,_,_,_,_) = pwd.getpwnam(username)
62
if os.system("useradd '%s'" % username) != 0:
63
raise Exception("Failed to add Unix user account")
65
(_,_,uid,_,_,_,_) = pwd.getpwnam(username)
67
raise Exception("Failed to add Unix user account")
68
# Make the user's jail
69
common.makeuser.make_jail(username, uid)
70
# Make the user's database entry
71
common.makeuser.make_user_db(username, password, nick, fullname, rolenm,
43
73
except Exception, message:
44
74
print "Error: " + str(message)
47
print "Successfully created user " + username + "."
77
print "Successfully created user %s (%s)." % (username, fullname)