[25975] in Source-Commits
/svn/athena r25330 - trunk/debathena/config/cluster-cups-config/debian
daemon@ATHENA.MIT.EDU (Jonathan D Reed)
Sat Jul 30 12:35:56 2011
Date: Sat, 30 Jul 2011 12:35:50 -0400
From: Jonathan D Reed <jdreed@MIT.EDU>
Message-Id: <201107301635.p6UGZou5002247@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jdreed
Date: 2011-07-30 12:35:50 -0400 (Sat, 30 Jul 2011)
New Revision: 25330
Modified:
trunk/debathena/config/cluster-cups-config/debian/changelog
trunk/debathena/config/cluster-cups-config/debian/prerm
Log:
In cluster-cups-config:
* And fix the broken prerm conditional
Modified: trunk/debathena/config/cluster-cups-config/debian/changelog
===================================================================
--- trunk/debathena/config/cluster-cups-config/debian/changelog 2011-07-30 16:26:26 UTC (rev 25329)
+++ trunk/debathena/config/cluster-cups-config/debian/changelog 2011-07-30 16:35:50 UTC (rev 25330)
@@ -3,8 +3,9 @@
* /etc/init.d/cups status always returns 0, so require_cups() in
configure-athena-printers won't actually require cups. Fix by just
calling start, since it's a noop if the service is already running.
+ * And fix the broken prerm conditional
- -- Jonathan Reed <jdreed@mit.edu> Sat, 30 Jul 2011 12:25:55 -0400
+ -- Jonathan Reed <jdreed@mit.edu> Sat, 30 Jul 2011 12:35:46 -0400
debathena-cluster-cups-config (2.0.3) unstable; urgency=low
Modified: trunk/debathena/config/cluster-cups-config/debian/prerm
===================================================================
--- trunk/debathena/config/cluster-cups-config/debian/prerm 2011-07-30 16:26:26 UTC (rev 25329)
+++ trunk/debathena/config/cluster-cups-config/debian/prerm 2011-07-30 16:35:50 UTC (rev 25330)
@@ -24,9 +24,7 @@
case "$1" in
remove|deconfigure)
- if [ -z "$2" ]; then
- /usr/share/debathena-cluster-cups-config/configure-athena-printers remove
- fi
+ /usr/share/debathena-cluster-cups-config/configure-athena-printers remove
;;
upgrade)