- Timestamp:
- 03/16/04 13:05:02 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1400 r1405 24 24 # 25 25 # $Log$ 26 # Revision 1.35 2004/03/16 12:05:01 jalet 27 # Small fix for new waitprinter.sh : when job was denied, would wait forever 28 # for printer being in printing mode. 29 # 26 30 # Revision 1.34 2004/03/15 10:47:56 jalet 27 31 # This time the traceback formatting should be correct ! … … 240 244 else : 241 245 action = "ALLOW" 246 os.putenv("PYKOTAACTION", action) 242 247 243 248 # pass the job's data to the real backend -
pykota/trunk/bin/waitprinter.sh
r1398 r1405 24 24 # the printer would effectively never print again if the previous job 25 25 # was already fully printed. 26 if [ x$PYKOTA PHASE == "xAFTER" ]; then26 if [ x$PYKOTAACTION != "xDENY" ] && [ x$PYKOTAPHASE == "xAFTER" ]; then 27 27 until snmpget -v1 -c public -Ov $1 HOST-RESOURCES-MIB::hrPrinterStatus.1 | grep -i printing >/dev/null; do 28 28 sleep 1 ; -
pykota/trunk/NEWS
r1404 r1405 24 24 - 1.18beta : 25 25 26 - Small fix for new waitprinter.sh script 27 26 28 - Better tracebacks on error conditions 27 29