blob: 327753a3b136e498f5aadd1e740f466d1ba5ac3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
depend() {
need net
use cupsd
}
start() {
for IFACE in ${IFACES}
do
ebegin "Starting arpwatch on ${IFACE}"
DATAFILE=/var/arpwatch/${IFACE}.dat
if [ ! -f ${DATAFILE} ]; then
touch ${DATAFILE}
fi
/usr/sbin/arpwatch -i $IFACE -f /var/arpwatch/$IFACE.dat ${OPTIONS}
result=$?
eend $result
done
}
stop() {
ebegin "Stopping arpwatch"
killall arpwatch > /dev/null
result=$?
eend $result
}
|