27 lines
497 B
Plaintext
27 lines
497 B
Plaintext
|
#!/sbin/runscript
|
||
|
|
||
|
depend() {
|
||
|
use net
|
||
|
need dbus
|
||
|
before nfs
|
||
|
after logger
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting cupsd"
|
||
|
|
||
|
checkpath -q -d -m 0775 -o root:lp /var/cache/cups
|
||
|
checkpath -q -d -m 0775 -o root:lp /var/cache/cups/rss
|
||
|
checkpath -q -d -m 0755 -o root:lp /run/cups
|
||
|
checkpath -q -d -m 0511 -o lp:lpadmin /run/cups/certs
|
||
|
|
||
|
start-stop-daemon --start --quiet --exec /usr/sbin/cupsd
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping cupsd"
|
||
|
start-stop-daemon --stop --quiet --exec /usr/sbin/cupsd
|
||
|
eend $?
|
||
|
}
|