summaryrefslogtreecommitdiff
blob: 785c13a25d8a9676debdd4194a472b674c8b9316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript

PIDFILE=/var/run/cups-browsed.pid

depend() {
	need cupsd avahi-daemon
}

start() {
	ebegin "Starting cups-browsed"
	start-stop-daemon --start --make-pidfile --pidfile "${PIDFILE}" \
		--background --quiet --exec /usr/sbin/cups-browsed
	eend $?
}

stop() {
	ebegin "Stopping cups-browsed"
	start-stop-daemon --stop --pidfile "${PIDFILE}" --quiet --exec /usr/sbin/cupsd
	eend $?
}