Changeset 2366
- Timestamp:
- 07/18/05 10:19:18 (19 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/autopykota
r2344 r2366 80 80 else : 81 81 self.logdebug("User %s doesn't exist yet." % username) 82 self.logdebug("Creating user %s's account with balance %s and quota entries on all existing printers." % (username, options["initbalance"]))83 return os.system('edpykota --add --limitby balance --balance "%s" "%s"' % (options["initbalance"], username))82 self.logdebug("Creating user %s's account with balance %s and quota entries on printer %s." % (username, options["initbalance"], printername)) 83 return os.system('edpykota --add --limitby balance --balance "%s" --printer "%s" "%s"' % (options["initbalance"], printername, username)) 84 84 85 85 if __name__ == "__main__" : -
pykota/trunk/NEWS
r2365 r2366 24 24 - 1.23alpha18 : 25 25 26 - Now autopykota doesn't create unneeded print quota entries anymore. 27 26 28 - Increased the timeout in the PJL hardware accounting code to 27 29 accomodate some printers (HP5000 at least).