cups: configure: disable acl
[14.07/packages.git] / admin / pmacct / files / nfacctd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2011 OpenWrt.org
3
4 START=50
5
6 SERVICE_USE_PID=1
7
8 PROG="nfacctd"
9 DEFAULT="/etc/default/$PROG"
10 COMMAND="/usr/sbin/$PROG"
11
12 start() {
13         [ -f $DEFAULT ] && . $DEFAULT
14         service_start $COMMAND $OPTIONS
15 }
16
17 stop() {
18         service_stop $COMMAND
19 }