[BACK]Return to cupsd.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / print / cups / files

File: [cvs.NetBSD.org] / pkgsrc / print / cups / files / cupsd.sh (download)

Revision 1.13, Sun Oct 20 08:09:46 2002 UTC (10 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.12: +1 -2 lines

Don't default to cupsd=NO anymore, as rc.d scripts aren't copied into
/etc/rc.d by default any longer.  This causes the usual warning to be
emitted when the script is executed.

#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: cupsd.sh,v 1.13 2002/10/20 08:09:46 jlam Exp $
#
# Common UNIX Printing System daemon
#
# PROVIDE: cupsd
# REQUIRE: DAEMON

if [ -f /etc/rc.subr ]
then
	. /etc/rc.subr
fi

name="cupsd"
rcvar=${name}
command="@PREFIX@/sbin/${name}"
required_files="@PKG_SYSCONFDIR@/${name}.conf"
extra_commands="reload"

if [ -f /etc/rc.subr ]
then
	load_rc_config $name
	run_rc_command "$1"
else
	@ECHO@ -n " ${name}"
	${command} ${cupsd_flags} ${command_args}
fi