]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - init/cups.sh.in
Load cups into easysw/current.
[thirdparty/cups.git] / init / cups.sh.in
index 975af256c97b6012d048933551998deca9bda466..cef5ad2d05cde77a66a3beb6b0fef23284c525e4 100755 (executable)
@@ -1,10 +1,10 @@
 #!/bin/sh
 #
-# "$Id: cups.sh.in 5118 2006-02-16 14:29:53Z mike $"
+# "$Id: cups.sh.in 6332 2007-03-12 16:08:51Z mike $"
 #
 #   Startup/shutdown script for the Common UNIX Printing System (CUPS).
 #
-#   Copyright 1997-2005 by Easy Software Products, all rights reserved.
+#   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
 #   property of Easy Software Products and are protected by Federal
@@ -135,6 +135,20 @@ fi
 unset TMPDIR
 
 
+#
+# Make sure we have the standard program directories in the path
+# since some operating systems (this means YOU HP-UX!) don't
+# provide a standard path on boot-up...
+#
+
+if "x$PATH" = x; then
+       PATH="/bin:/usr/bin:/sbin:/usr/sbin"
+else
+       PATH="/bin:/usr/bin:/sbin:/usr/sbin:$PATH"
+fi
+
+export PATH
+
 #
 # See if the CUPS server (cupsd) is running...
 #
@@ -201,6 +215,16 @@ case $1 in
                fi
                ;;
 
+       start_msg)
+               # HP-UX non-standard...
+               echo "Starting CUPS Server"
+               ;;
+
+       stop_msg)
+               # HP-UX non-standard...
+               echo "Starting CUPS Server"
+               ;;
+
        *)
                echo "Usage: cups {reload|restart|start|status|stop}"
                exit 1
@@ -215,5 +239,5 @@ exit 0
 
 
 #
-# End of "$Id: cups.sh.in 5118 2006-02-16 14:29:53Z mike $".
+# End of "$Id: cups.sh.in 6332 2007-03-12 16:08:51Z mike $".
 #