mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Restructure incomplete or broken "autoconf" implementations
Some plugins with non-zero autoconf exitcodes (it must be zero instead) deserved a bit of code cleanup for improved readability.
This commit is contained in:
parent
46e2de55de
commit
9cef55a3ed
15 changed files with 85 additions and 105 deletions
|
@ -216,22 +216,18 @@ EOF
|
|||
autoconf)
|
||||
if [ ! -x ${sysctl} ]; then
|
||||
echo "no (${sysctl} is not executable)"
|
||||
exit 1
|
||||
fi
|
||||
if [ ${ostype} = "FreeBSD" ]; then
|
||||
elif [ "${ostype}" = "FreeBSD" ]; then
|
||||
echo "yes"
|
||||
exit 0
|
||||
fi
|
||||
if [ ${ostype} = "Linux" ]; then
|
||||
elif [ "${ostype}" = "Linux" ]; then
|
||||
if [ -f ${procfile} ]; then
|
||||
echo "yes"
|
||||
exit 0
|
||||
else
|
||||
echo "no (The statsfile does not exist: ${procfile})"
|
||||
fi
|
||||
echo "no (The statsfile does not exist: ${procfile})"
|
||||
exit 1
|
||||
else
|
||||
echo "no (Your OS is not supported by this plugin)"
|
||||
fi
|
||||
echo "no (You're OS is not supported by this plugin)"
|
||||
exit 1
|
||||
exit 0
|
||||
;;
|
||||
suggest)
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue