4333ad47b1
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mds@867 6952d904-891a-0410-993b-d76249ca496b
21 lines
293 B
D
21 lines
293 B
D
#!/sbin/runscript
|
|
|
|
depend() {
|
|
use net
|
|
@neededservices@
|
|
before nfs
|
|
after logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting cupsd"
|
|
start-stop-daemon --start --quiet --exec /usr/sbin/cupsd
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping cupsd"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/cupsd
|
|
eend $?
|
|
}
|