port lots of init scripts over to rc.common (more to come)
[packages.git] / net / cups / files / cupsd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 start() {
5         mkdir -p /tmp/cups
6         mkdir -p /tmp/spool/cups/tmp
7         /usr/sbin/cupsd
8 }
9
10 stop() {
11         killall cupsd
12 }