]> andersk Git - moira.git/commitdiff
Goo for persistently disabling queues.
authorzacheiss <zacheiss>
Fri, 16 Oct 2009 20:37:18 +0000 (20:37 +0000)
committerzacheiss <zacheiss>
Fri, 16 Oct 2009 20:37:18 +0000 (20:37 +0000)
gen/cups-print.sh

index c60a2a8c1ea664c6593a19748b82ea753abe1d9c..1e3c42f46ade2a812f18cc012b23fce339809059 100755 (executable)
@@ -21,15 +21,23 @@ CUPSLOCAL=/etc/cups
 test -r $TARFILE || exit $MR_MISSINGFILE
 test -d $CUPSLOCAL || exit $MR_MISSINGFILE
 
+/etc/cups/bin/check-disabled.pl 2>/dev/null
+
 # Unpack the tar file, getting only files that are newer than the
 # on-disk copies (-u).
 cd /
 tar xf $TARFILE || exit $MR_TARERR
 
+/etc/cups/bin/post-dcm-disable.pl 2>/dev/null
+if [ -s /etc/cups/printers.conf.tmp ]; then
+    mv /etc/cups/printers.conf.tmp /etc/cups/printers.conf
+fi
+
 # Now, make a stab at the PPD file.
 /etc/cups/bin/gen-ppd.pl
 
-/etc/init.d/cups restart
+/etc/init.d/cups stop
+/etc/init.d/cups start
 
 if [ $? != 0 ]; then
     exit $MR_MKCRED
This page took 0.040982 seconds and 5 git commands to generate.