Changeset 1095 for pykota/trunk
- Timestamp:
- 07/23/03 18:51:32 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 1 added
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/conf/pykota.conf.sample
r1094 r1095 255 255 # WARNING : In any case, when using an external requester, please test the command line outside 256 256 # of PyKota before. This will save you some headaches in case it doesn't work as expected. 257 requester: external(/usr/bin/snmpget -v1 -c public -Ov %(printer)s mib-2.43.10.2.1.4.1.1 | cut -f 2,2 -d " ") 257 # 258 # The waitprinter.sh is there to wait until the printer is idle again. 259 # This should prevent a job to be sent to the printer while another one is 260 # not yet finished (not all pages are printed, but the complete job is in 261 # the printer) 262 requester: external(/usr/bin/waitprinter.sh %(printer)s && /usr/bin/snmpget -v1 -c public -Ov %(printer)s mib-2.43.10.2.1.4.1.1 | cut -f 2,2 -d " ") 258 263 259 264 # Default policy for inexistant users (e.g. root) -
pykota/trunk/MANIFEST.in
r1057 r1095 1 include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/ README1 include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/waitprinter.sh bin/README 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.1 -
pykota/trunk/NEWS
r1089 r1095 22 22 PyKota NEWS : 23 23 24 - 1.14alpha8 : 25 26 - bin/waitprinter.sh is now included to wait for 27 SNMP enabled printers to be idle again before 28 asking for their internal page counter. 29 See sample configuration file for details. 30 24 31 - 1.14alpha7 : 25 32 -
pykota/trunk/pykota/version.py
r1089 r1095 21 21 # 22 22 23 __version__ = "1.14alpha 7_unofficial"23 __version__ = "1.14alpha8_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" -
pykota/trunk/setup.py
r1087 r1095 23 23 # 24 24 # $Log$ 25 # Revision 1.20 2003/07/23 16:51:32 jalet 26 # waitprinter.sh is now included to prevent PyKota from asking the 27 # printer's internal page counter while a job is still being printer. 28 # 25 29 # Revision 1.19 2003/07/16 21:53:07 jalet 26 30 # Really big modifications wrt new configuration file's location and content. … … 287 291 url = "http://www.librelogiciel.com/software/", 288 292 packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 289 scripts = [ "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme" ],293 scripts = [ "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme", "bin/waitprinter.sh" ], 290 294 data_files = data_files) 291 295