From 0d68452dcc603ef2d2bdab993ff1055dff381761 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Mon, 19 Feb 2018 23:26:53 +0100 Subject: [PATCH] avoid too much FAILED for IS_MYSQLMUNIN --- evocheck.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/evocheck.sh b/evocheck.sh index 91da52b..756b267 100755 --- a/evocheck.sh +++ b/evocheck.sh @@ -678,6 +678,7 @@ if [ -e /etc/debian_version ]; then if is_debianversion stretch && is_installed mariadb-server; then for file in mysql_bytes mysql_queries mysql_slowqueries mysql_threads mysql_connections mysql_files_tables mysql_innodb_bpool mysql_innodb_bpool_act mysql_innodb_io mysql_innodb_log mysql_innodb_rows mysql_innodb_semaphores mysql_myisam_indexes mysql_qcache mysql_qcache_mem mysql_sorts mysql_tmp_tables; do test -L /etc/munin/plugins/$file || echo 'IS_MYSQLMUNIN FAILED!' + test -L /etc/munin/plugins/$file || break done fi fi