From ea56deefd1eea93f45dc2b03f2d01af448250ca1 Mon Sep 17 00:00:00 2001 From: f3flight Date: Fri, 5 Aug 2016 09:22:07 +0000 Subject: [PATCH] Fix issue #54 (remove status filter by default) --- timmy/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timmy/conf.py b/timmy/conf.py index 023b704..aec0961 100644 --- a/timmy/conf.py +++ b/timmy/conf.py @@ -24,7 +24,7 @@ def load_conf(filename): """Configuration parameters""" conf = {} conf['hard_filter'] = {} - conf['soft_filter'] = {'status': ['ready', 'discover'], 'online': True} + conf['soft_filter'] = {'online': True} conf['ssh_opts'] = ['-oConnectTimeout=2', '-oStrictHostKeyChecking=no', '-oUserKnownHostsFile=/dev/null', '-oLogLevel=error', '-lroot', '-oBatchMode=yes']