--- trunk/run.pl 2009/04/21 21:03:53 1129 +++ trunk/run.pl 2009/04/25 14:17:27 1160 @@ -371,6 +371,11 @@ my $input_name = $input->{name} || $log->logdie("input without a name isn't valid: ",dump($input)); + if ( $input->{skip} ) { + $log->info("skip $input_name"); + next; + } + next if ($only_input && ($input_name !~ m#$only_input#i && $input->{type} !~ m#$only_input#i)); my $type = lc($input->{type});