Fixed "Non-zero exit during autoconf (1)" error from munin vmware plugin.

This commit is contained in:
Timo Mkinen 2011-11-24 09:02:44 +02:00
parent 0a47d1408b
commit a82489244e

View file

@ -13,11 +13,10 @@
if [ "$1" = "autoconf" ]; then if [ "$1" = "autoconf" ]; then
if [ -x /usr/bin/vmware-vim-cmd ]; then if [ -x /usr/bin/vmware-vim-cmd ]; then
echo yes echo yes
exit 0
else else
echo no echo no
exit 1
fi fi
exit 0
fi fi