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

« back to all changes in this revision

Viewing changes to bin/ivle-makeuser

  • Committer: Matt Giuca
  • Date: 2009-04-25 15:04:46 UTC
  • Revision ID: matt.giuca@gmail.com-20090425150446-f6z2k8ogs8kgyh1y
Tags: 0.1.9.12
ivle.chat, ivle.database, ivle.makeuser: Replaced use of md5 library with
    hashlib to avoid Python 2.6 producing DeprecationWarnings.
    Also use hexdigest() instead of digest().encode('hex').

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