From a82489244e8cb317676e7541822406623e0acfbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Thu, 24 Nov 2011 09:02:44 +0200 Subject: [PATCH] Fixed "Non-zero exit during autoconf (1)" error from munin vmware plugin. --- munin/files/plugins/vmware_vms | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/munin/files/plugins/vmware_vms b/munin/files/plugins/vmware_vms index d87a17e..c22b998 100755 --- a/munin/files/plugins/vmware_vms +++ b/munin/files/plugins/vmware_vms @@ -13,11 +13,10 @@ if [ "$1" = "autoconf" ]; then if [ -x /usr/bin/vmware-vim-cmd ]; then echo yes - exit 0 else echo no - exit 1 fi + exit 0 fi