[24026] in Source-Commits
/svn/athena r23635 - in trunk/debathena/config/printing-config: debian files/usr/bin
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Mon Mar 16 15:29:41 2009
Date: Mon, 16 Mar 2009 15:29:32 -0400
From: Geoffrey Thomas <geofft@MIT.EDU>
Message-Id: <200903161929.n2GJTWAU030178@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: geofft
Date: 2009-03-16 15:29:31 -0400 (Mon, 16 Mar 2009)
New Revision: 23635
Modified:
trunk/debathena/config/printing-config/debian/changelog
trunk/debathena/config/printing-config/files/usr/bin/lpr.debathena
Log:
In printing-config:
* Fix a typo that causes CUPS-only queues to not get preferred if the system
default is LPRng.
Modified: trunk/debathena/config/printing-config/debian/changelog
===================================================================
--- trunk/debathena/config/printing-config/debian/changelog 2009-03-16 18:58:40 UTC (rev 23634)
+++ trunk/debathena/config/printing-config/debian/changelog 2009-03-16 19:29:31 UTC (rev 23635)
@@ -1,3 +1,10 @@
+debathena-printing-config (1.5.1) unstable; urgency=low
+
+ * Fix a typo that causes CUPS-only queues to not get preferred if the system
+ default is LPRng.
+
+ -- Geoffrey Thomas <geofft@mit.edu> Mon, 16 Mar 2009 15:26:13 -0400
+
debathena-printing-config (1.5) unstable; urgency=low
* Permit lpq's -v (verbose).
Modified: trunk/debathena/config/printing-config/files/usr/bin/lpr.debathena
===================================================================
--- trunk/debathena/config/printing-config/files/usr/bin/lpr.debathena 2009-03-16 18:58:40 UTC (rev 23634)
+++ trunk/debathena/config/printing-config/files/usr/bin/lpr.debathena 2009-03-16 19:29:31 UTC (rev 23635)
@@ -68,7 +68,7 @@
"""If queue exists as an LPRng queue, pass the command and arguments on to
the LPRng versions of the command
"""
- if queue == None or lprngQueueExists(queue) or not lprngQueueExists(queue):
+ if queue == None or lprngQueueExists(queue) or not cupsQueueExists(queue):
new_command = '/usr/bin/mit-%s' % command
run(command, new_command, args)