mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 18:22:30 +01:00
42 lines
912 B
Diff
42 lines
912 B
Diff
diff --git a/bihourly.sh b/bihourly.sh
|
|
index 33e54db..810bf80 100755
|
|
--- a/bihourly.sh
|
|
+++ b/bihourly.sh
|
|
@@ -3,11 +3,14 @@
|
|
#
|
|
# bihourly arpwatch job
|
|
#
|
|
-PATH=${PATH}:/usr/local/sbin
|
|
-export PATH
|
|
-#
|
|
-cd /usr/operator/arpwatch
|
|
#
|
|
+
|
|
+. /etc/conf.d/arpwatch
|
|
+
|
|
+ARPWATCH_REPORT_EMAIL=
|
|
+
|
|
+cd /usr/share/arpwatch
|
|
+
|
|
list="`cat list`"
|
|
cname="`cat cname`"
|
|
temp1=$(mktemp)
|
|
@@ -26,7 +29,7 @@ touch ${l}
|
|
|
|
alist=""
|
|
for r in ${list}; do \
|
|
- ./arpfetch ${r} ${cname} > ${r} 2> ${temp1}
|
|
+ arpfetch ${r} ${cname} > ${r} 2> ${temp1}
|
|
if [ -s ${temp1} ]; then
|
|
echo "arpfetch ${r} errors:"
|
|
xr=${d}/${r}.$$
|
|
@@ -44,7 +47,7 @@ arpsnmp -d ${alist} > ${temp1} 2>&1
|
|
sed -e '/arpsnmp: suppressed DECnet flip flop/d' ${temp1} > ${temp2}
|
|
if [ -s ${temp2} ]; then
|
|
mail -s "`hostname` arpwatch report" \
|
|
- arpwatch-reports@noname.lbl.gov < ${temp2}
|
|
+ $ARPWATCH_REPORT_EMAIL < ${temp2}
|
|
fi
|
|
rm -f ${temp1} ${temp2}
|
|
|