[Pkg-cups-devel] r229 - cupsys/branches/cups-1.2-ubuntu/debian

Martin Pitt mpitt at costa.debian.org
Thu May 11 10:47:39 UTC 2006


Author: mpitt
Date: Thu May 11 10:47:36 2006
New Revision: 229

Modified:
   cupsys/branches/cups-1.2-ubuntu/debian/changelog
   cupsys/branches/cups-1.2-ubuntu/debian/cupsys.init.d

Log:
* debian/cupsys.init:
  - Load the 'lp' module. Earlier installers did not put it in /etc/modules
    and we keep getting dozens of bug reports about that, so let's just fix it
    here once and for all.
  - Load the 'ppdev' module. This should fix detection of parallel printers.
    Closes: LP#29050

Modified: cupsys/branches/cups-1.2-ubuntu/debian/changelog
==============================================================================
--- cupsys/branches/cups-1.2-ubuntu/debian/changelog	(original)
+++ cupsys/branches/cups-1.2-ubuntu/debian/changelog	Thu May 11 10:47:36 2006
@@ -1,8 +1,13 @@
 cupsys (1.2.0-0ubuntu2) dapper; urgency=low
 
-  *
+  * debian/cupsys.init:
+    - Load the 'lp' module. Earlier installers did not put it in /etc/modules
+      and we keep getting dozens of bug reports about that, so let's just fix it
+      here once and for all.
+    - Load the 'ppdev' module. This should fix detection of parallel printers.
+      Closes: LP#29050
 
- -- Martin Pitt <martin.pitt at ubuntu.com>  Thu, 11 May 2006 11:08:02 +0200
+ -- Martin Pitt <martin.pitt at ubuntu.com>  Thu, 11 May 2006 11:09:59 +0200
 
 cupsys (1.2.0-0ubuntu1) dapper; urgency=low
 

Modified: cupsys/branches/cups-1.2-ubuntu/debian/cupsys.init.d
==============================================================================
--- cupsys/branches/cups-1.2-ubuntu/debian/cupsys.init.d	(original)
+++ cupsys/branches/cups-1.2-ubuntu/debian/cupsys.init.d	Thu May 11 10:47:36 2006
@@ -37,6 +37,11 @@
 	    fi
 	done
 
+	# load modules for parallel printer support which are not covered by
+	# udev
+	modprobe lp 2>/dev/null || true
+	modprobe ppdev 2>/dev/null || true # for ISO-1284 device name detection
+
 	start-stop-daemon --start --quiet --oknodo --pidfile "$PIDFILE" --exec $DAEMON
 	;;
   stop)



More information about the Pkg-cups-devel mailing list