1
0
Fork 0
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:
Lars Kruse 2018-09-16 05:03:47 +02:00
parent 46e2de55de
commit 9cef55a3ed
15 changed files with 85 additions and 105 deletions

View file

@ -39,8 +39,12 @@ WGET_FLAGS="-Yoff"; # refer to wget manual, you may set extra parameters like di
act=`basename $0 | sed 's/^php_apc_//g'`
if [ "$1" = "autoconf" ]; then
[ -z "$URL" ] && echo "no (edit URL config in header file !)" && exit 1
[ -n "$URL" ] && echo "yes" && exit 0
if [ -z "$URL" ]; then
echo "no (missing URL config in header file)"
else
echo "yes"
fi
exit 0
fi
if [ "$1" = "suggest" ]; then

View file

@ -21,8 +21,12 @@ WGET_FLAGS="-Yoff"; # refer to wget manual, you may set extra parameters like di
act=memory
if [ "$1" = "autoconf" ]; then
[ -z "$URL" ] && echo "no (edit URL config in header file !)" && exit 1
[ -n "$URL" ] && echo "yes" && exit 0
if [ -z "$URL" ]; then
echo "no (missing URL config in header file)"
else
echo "yes"
fi
exit 0
fi
if [ "$1" = "suggest" ]; then