+ fix some filter missing
This commit is contained in:
parent
38b90379fc
commit
fa6ff00566
|
@ -87,6 +87,10 @@ sub run {
|
|||
} else {
|
||||
$filters{name} = qr/$self->{vm_hostname}/;
|
||||
}
|
||||
if (defined($self->{filter_description}) && $self->{filter_description} ne '') {
|
||||
$filters{'config.annotation'} = qr/$self->{filter_description}/;
|
||||
}
|
||||
|
||||
my @properties = ('name', 'config.hardware.device', 'runtime.connectionState', 'runtime.powerState');
|
||||
if (defined($self->{display_description})) {
|
||||
push @properties, 'config.annotation';
|
||||
|
|
|
@ -96,6 +96,10 @@ sub run {
|
|||
} else {
|
||||
$filters{name} = qr/$self->{vm_hostname}/;
|
||||
}
|
||||
if (defined($self->{filter_description}) && $self->{filter_description} ne '') {
|
||||
$filters{'config.annotation'} = qr/$self->{filter_description}/;
|
||||
}
|
||||
|
||||
my @properties = ('name', 'summary.guest.toolsStatus', 'runtime.connectionState', 'runtime.powerState');
|
||||
if (defined($self->{display_description})) {
|
||||
push @properties, 'config.annotation';
|
||||
|
|
Loading…
Reference in New Issue