mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-17 17:48:16 -05:00
Merge pull request #270 from cgzones/munin
munin plugin: always exit 0 in autoconf
This commit is contained in:
commit
5db73977d8
1 changed files with 2 additions and 2 deletions
|
|
@ -174,11 +174,11 @@ get_state ( ) {
|
|||
if test "$1" = "autoconf" ; then
|
||||
if test ! -f $conf; then
|
||||
echo no "($conf does not exist)"
|
||||
exit 1
|
||||
exit 0
|
||||
fi
|
||||
if test ! -d `dirname $state`; then
|
||||
echo no "(`dirname $state` directory does not exist)"
|
||||
exit 1
|
||||
exit 0
|
||||
fi
|
||||
echo yes
|
||||
exit 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue