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
|
@ -40,14 +40,12 @@
|
|||
|
||||
# Auto Configure, Check it word 1 is defined
|
||||
if [ "$1" = "autoconf" ]; then
|
||||
if [ "$URL1" != "" ]; then
|
||||
if [ "$WORD1" != "" ]; then
|
||||
echo yes
|
||||
exit 0
|
||||
fi
|
||||
if [ -n "$URL1" ] && [ -n "$WORD1" ]; then
|
||||
echo yes
|
||||
else
|
||||
echo no
|
||||
fi
|
||||
echo no
|
||||
exit 1
|
||||
exit 0
|
||||
fi
|
||||
|
||||
#Configure, loop through each variable defined WORDx URLx dumping it to munin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue