diff options
Diffstat (limited to 'packages/pmacct/files/pmacct.init')
-rw-r--r-- | packages/pmacct/files/pmacct.init | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/pmacct/files/pmacct.init b/packages/pmacct/files/pmacct.init index e69de29bb2..fe72bb8d15 100644 --- a/packages/pmacct/files/pmacct.init +++ b/packages/pmacct/files/pmacct.init @@ -0,0 +1,39 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +IFACES="eth0" +PIPES="in out" + +case "$1" in + start) + echo -n "Starting pmacct daemon" + for iface in $IFACES; do + pmacctd -f /etc/pmacct/pmacct.conf.$iface + done + echo "." + ;; + stop) + echo -n "Stopping pmacct daemon" + killall -INT pmacctd + echo "." + ;; + restart) + $0 stop + $0 start + ;; + show) + for iface in $IFACES; do + echo "= $iface =======================" + for pipe in $PIPES; do + echo "- $pipe -----------------------" + pmacct -s -p /var/run/pmacct-$iface-$pipe.pipe + done + done + ;; + *) + echo "Usage: $0 {start|stop|restart|show}" + exit 1 + ;; +esac + +exit 0
\ No newline at end of file |