1
0
mirror of synced 2026-04-27 04:46:28 +00:00

Do not ignore serial_device nor disk_device

Harden mirror and options regexps also.
This commit is contained in:
Stéphane Jourdois
2010-07-18 16:08:50 +02:00
committed by Axel Beckert
parent 0cb0a8716c
commit ea09c86b7a

View File

@@ -45,9 +45,8 @@ foreach my $key ( sort keys %OPTIONS )
}
}
next if ( $key =~ /mirror_/i );
next if ( $key =~ /_options/i );
next if ( $key =~ /(serial_device|disk_device)/i );
next if ( $key =~ /^mirror_/ );
next if ( $key =~ /_options$/ );
is( $found, 1 , " Found documentation for '$key'" );
}