prefix output fix (#3729)
This commit is contained in:
parent
6f1a41b247
commit
5118894e7b
|
@ -33,7 +33,7 @@ sub prefix_cluster_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"Cluster '%s'",
|
||||
"Cluster '%s' ",
|
||||
$cluster_name
|
||||
);
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ sub prefix_container_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"Container '%s'",
|
||||
"Container '%s' ",
|
||||
$options{instance_value}->{display}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ sub prefix_controllervm_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"ControllerVM '%s'",
|
||||
"ControllerVM '%s' ",
|
||||
$options{instance_value}->{name}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ sub prefix_hypervisor_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"Hypervisor '%s'",
|
||||
"Hypervisor '%s' ",
|
||||
$options{instance_value}->{display}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ sub prefix_sp_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"Storage Pool '%s'",
|
||||
"Storage Pool '%s' ",
|
||||
$options{instance_value}->{display}
|
||||
);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ sub prefix_vm_output {
|
|||
my ($self, %options) = @_;
|
||||
|
||||
return sprintf(
|
||||
"Virtual machine '%s'",
|
||||
"Virtual machine '%s' ",
|
||||
$options{instance_value}->{display}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue