mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 14:16:00 +00:00
Changed how tempory filename is created and handled. Now follows example in mktemp documentation.
This commit is contained in:
parent
b25acb9a2d
commit
678fb563f1
1 changed files with 14 additions and 22 deletions
|
@ -115,9 +115,9 @@ config)
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
# Location and name of tempfile to parse
|
FILENAME=$(mktemp -q) && {
|
||||||
FILENAME=$(mktemp /tmp/cisco_epc3010-XXXX.dump) || exit 1
|
# Safe to use $FILENAME only within this block. Use quotes,
|
||||||
|
# since $TMPDIR, and thus $FILENAME, may contain whitespace.
|
||||||
|
|
||||||
# Get statuspage from the modem
|
# Get statuspage from the modem
|
||||||
curl -s -o $FILENAME http://192.168.100.1/Docsis_system.asp
|
curl -s -o $FILENAME http://192.168.100.1/Docsis_system.asp
|
||||||
|
@ -128,6 +128,8 @@ SNR_ARRAY=( 0 $(awk -F'[<>]' '/ ch_snr/{print $3}' $FILENAME) )
|
||||||
PWR_ARRAY=( 0 $(awk -F'[<>]' '/ ch_pwr/{print $3}' $FILENAME) )
|
PWR_ARRAY=( 0 $(awk -F'[<>]' '/ ch_pwr/{print $3}' $FILENAME) )
|
||||||
UP_PWR_ARRAY=( 0 $(awk -F'[<>]' '/ up_pwr/{print $3}' $FILENAME) )
|
UP_PWR_ARRAY=( 0 $(awk -F'[<>]' '/ up_pwr/{print $3}' $FILENAME) )
|
||||||
|
|
||||||
|
rm -f "$FILENAME"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -146,12 +148,10 @@ if [ "$DIRECTION" == "downstream" ]; then
|
||||||
do
|
do
|
||||||
printf "channel_%d_snr.value %s\n" $index ${SNR_ARRAY[$index]}
|
printf "channel_%d_snr.value %s\n" $index ${SNR_ARRAY[$index]}
|
||||||
done
|
done
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Upstream info - Modem outputs Power Levels
|
# Upstream info - Modem outputs Power Levels
|
||||||
#
|
#
|
||||||
|
@ -164,11 +164,3 @@ if [ "$DIRECTION" == "upstream" ]; then
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Remove tempory file, used for parsing data
|
|
||||||
#
|
|
||||||
trap "rm -rf $FILENAME" EXIT
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue