5
0
mirror of git://git.proxmox.com/git/pve-ha-manager.git synced 2025-01-23 02:04:19 +03:00

grammar fix: s/does not exists/does not exist/g

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-12-13 12:08:30 +01:00
parent 12b2405045
commit fd0548f6c9
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ sub exists {
my $vmlist = PVE::Cluster::get_vmlist();
if(!defined($vmlist->{ids}->{$vmid})) {
die "resource 'ct:$vmid' does not exists in cluster\n" if !$noerr;
die "resource 'ct:$vmid' does not exist in cluster\n" if !$noerr;
return undef;
} else {
return 1;

View File

@ -52,7 +52,7 @@ sub exists {
my $vmlist = PVE::Cluster::get_vmlist();
if(!defined($vmlist->{ids}->{$vmid})) {
die "resource 'vm:$vmid' does not exists in cluster\n" if !$noerr;
die "resource 'vm:$vmid' does not exist in cluster\n" if !$noerr;
return undef;
} else {
return 1;