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

« back to all changes in this revision

Viewing changes to bin/ivle-listusers

  • Committer: me at id
  • Date: 2009-01-15 01:18:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1145
Give ivle.database.User {password,account}_expired attributes, and get
ivle.dispatch.login to use them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import os
28
28
import getopt
29
29
 
30
 
import ivle.database
 
30
import ivle.db
31
31
 
32
32
# Options processing
33
33
def usage():
56
56
    print "Must run listusers.py as root."
57
57
    sys.exit()
58
58
 
59
 
store = ivle.database.get_store()
60
 
users = store.find(ivle.database.User).order_by(ivle.database.User.login)
 
59
try:
 
60
    db = ivle.db.DB()
 
61
    list = db.get_users()
 
62
except Exception, message:
 
63
    print "Error: " + str(message)
 
64
    sys.exit(1)
61
65
 
62
 
for user in users:
 
66
list.sort(key=lambda user: user.login)
 
67
for user in list:
63
68
    if justnames:
64
69
        print user.login
65
70
    else: