mirror of
https://github.com/nikdoof/huawei-hg612-munin.git
synced 2025-12-13 02:32:16 +00:00
12 lines
280 B
Bash
Executable File
12 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
statsfile=${statsfile:-/var/lib/munin/plugin-state/huawei-hg612-munin-output.txt}
|
|
|
|
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
|