blob: 6a47ed84a57e62e5e7e121046b5284b55dba9652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /bin/sh
#
# Common UNIX Printing System daemon
#
# PROVIDE: cupsd
# REQUIRE: DAEMON
if [ -d /etc/rc.d -a -f /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="cupsd"
rcvar=${name}
command="@PREFIX@/sbin/${name}"
required_files="/etc/cups/${name}.conf"
extra_commands="reload"
if [ ! -d /etc/rc.d ]
then
@ECHO@ -n " ${name}"
exec ${command} ${cupsd_flags} ${command_args}
fi
load_rc_config $name
run_rc_command "$1"
|