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
|
@ -110,15 +110,13 @@ if [ "$1" = "autoconf" ]; then
|
|||
|
||||
if [ ! -x "${JAVA_HOME}/bin/jstat" ]; then
|
||||
echo "no (No jstat found in ${JAVA_HOME}/bin)"
|
||||
exit 1
|
||||
elif [ ! -f "$pidfilepath" ]; then
|
||||
echo "no (missing file $pidfilepath)"
|
||||
elif [ ! -r "$pidfilepath" ]; then
|
||||
echo "no (cannot read $pidfilepath)"
|
||||
else
|
||||
echo "yes"
|
||||
fi
|
||||
|
||||
if [ ! -f "${pidfilepath}" ] || [ ! -r "${pidfilepath}" ]; then
|
||||
echo "no (No such file ${pidfilepath} or cannot read ${pidfilepath}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "yes"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
|
@ -130,15 +130,13 @@ if [ "$1" = "autoconf" ]; then
|
|||
|
||||
if [ ! -x "${JAVA_HOME}/bin/jstat" ]; then
|
||||
echo "no (No jstat found in ${JAVA_HOME}/bin)"
|
||||
exit 1
|
||||
elif [ ! -f "$pidfilepath" ]; then
|
||||
echo "no (missing file $pidfilepath)"
|
||||
elif [ ! -r "$pidfilepath" ]; then
|
||||
echo "no (cannot read $pidfilepath)"
|
||||
else
|
||||
echo "yes"
|
||||
fi
|
||||
|
||||
if [ ! -f "${pidfilepath}" ] || [ ! -r "${pidfilepath}" ]; then
|
||||
echo "no (No such file ${pidfilepath} or cannot read ${pidfilepath}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "yes"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
|
@ -185,15 +185,13 @@ if [ "$1" = "autoconf" ]; then
|
|||
|
||||
if [ ! -x "${JAVA_HOME}/bin/jstat" ]; then
|
||||
echo "no (No jstat found in ${JAVA_HOME}/bin)"
|
||||
exit 1
|
||||
elif [ ! -f "$pidfilepath" ]; then
|
||||
echo "no (missing file $pidfilepath)"
|
||||
elif [ ! -r "$pidfilepath" ]; then
|
||||
echo "no (cannot read $pidfilepath)"
|
||||
else
|
||||
echo "yes"
|
||||
fi
|
||||
|
||||
if [ ! -f "${pidfilepath}" ] || [ ! -r "${pidfilepath}" ]; then
|
||||
echo "no (No such file ${pidfilepath} or cannot read ${pidfilepath}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "yes"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue