]> git.proxmox.com Git - pve-ha-manager.git/commitdiff
grammar fix: s/does not exists/does not exist/g
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 13 Dec 2019 11:08:30 +0000 (12:08 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 13 Dec 2019 11:08:30 +0000 (12:08 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/HA/Resources/PVECT.pm
src/PVE/HA/Resources/PVEVM.pm

index 282f4ef3a06451a84e63ae26ddd61b84adc265e5..015faf321e4f94add416f50b87777d1a43d5a487 100644 (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;
index ab9e27141e312e2ea574207d929abc441127b99e..2e1698fce4c0005955f3bfcc517cf8048c1de068 100644 (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;