Add the script to fetch stats from ADSL modem.

This commit is contained in:
Chris Wilson
2013-07-17 11:38:14 +01:00
parent c92256cc47
commit d83d1c5a31

View File

@@ -2,4 +2,10 @@
statsfile=${statsfile:-/var/lib/munin/plugin-state/huawei-hg612-munin-output.txt}
expect `dirname $0`/huawei.expect | tee | tr -d "\015" > $statsfile
expect `dirname $0`/huawei.expect | tee | tr -d "\015" > $statsfile.new
if [ -s "$statsfile.new" ]; then
mv $statsfile.new $statsfile
else
echo "Empty output from expect script"
fi