START/STOP values must be specified in the init script
[packages.git] / net / cups / files / cupsd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 start() {
6         mkdir -p /tmp/cups
7         mkdir -p /tmp/spool/cups/tmp
8         /usr/sbin/cupsd
9 }
10
11 stop() {
12         killall cupsd
13 }