~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to bin/ivle-makeuser

Fix circular import in ivle.zip.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import os
32
32
import getopt
33
33
 
34
 
if os.getuid() != 0:
35
 
    print "Must run %s as root." % os.path.basename(sys.argv[0])
36
 
    sys.exit(1)
37
 
 
38
 
from ivle.config import Config
39
34
from ivle.database import get_store, User
40
35
from ivle.pulldown_subj import enrol_user
41
36
 
42
37
# Requireds and optionals will be used to display the usage message
43
38
# AND do argument processing
44
39
# The names here must correspond to the fields in the database.
45
 
requireds = ["login", "fullname"]
 
40
requireds = ["login", "fullname", "rolenm"]
46
41
optionals = [
47
42
    ('p', 'password', "Cleartext password for this user"),
48
43
    ('n', 'nick', "Display name (defaults to <fullname>)"),
60
55
        print t + (' ' * max(28 - len(t), 2)) + desc
61
56
    sys.exit(1)
62
57
 
 
58
if os.getuid() != 0:
 
59
    print "Must run %s as root." % os.path.basename(sys.argv[0])
 
60
    sys.exit(1)
 
61
 
63
62
shorts = ''.join([o[0] + ":" for o in optionals])
64
63
longs = [o[1] + "=" for o in optionals]
65
64
opts, args = getopt.gnu_getopt(sys.argv[1:], shorts, longs)
81
80
if 'nick' not in user:
82
81
    user['nick'] = user['fullname']
83
82
 
84
 
store = get_store(Config())
 
83
store = get_store()
85
84
 
86
85
try:
87
86
    # Make the user's database entry