]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - init/PrintingServices.launchd
Merge changes from 1.4svn-r7067.
[thirdparty/cups.git] / init / PrintingServices.launchd
index be9992a78e251f6757d4d6951b5fd644ab8cca18..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100755 (executable)
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-##
-# PrintingServices - a.k.a. CUPS
-##
-
-. /etc/rc.common
-
-StartService ()
-{
-       ConsoleMessage "Starting printing services"
-       launchctl start org.cups.cupsd
-}
-
-StopService ()
-{
-       ConsoleMessage "Stopping printing services"
-       launchctl stop org.cups.cupsd
-}
-
-RestartService ()
-{
-       ConsoleMessage "Restarting printing services"
-       launchctl stop org.cups.cupsd
-       launchctl start org.cups.cupsd
-}
-
-RunService "$1"