]> git.proxmox.com Git - pve-network.git/commitdiff
grammar fix: s/does not exists/does not exist/g
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 13 Dec 2019 11:10:15 +0000 (12:10 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 13 Dec 2019 11:10:15 +0000 (12:10 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/Network/SDN/Controllers.pm
PVE/Network/SDN/Vnets.pm
PVE/Network/SDN/Zones.pm

index 773e1456f9c2eeb5b64349d1529801eeac557e1f..16c664d5c3833510f757ad0f1c0cfa9dde8cc79d 100644 (file)
@@ -26,7 +26,7 @@ sub sdn_controllers_config {
     die "no sdn controller ID specified\n" if !$id;
 
     my $scfg = $cfg->{ids}->{$id};
-    die "sdn '$id' does not exists\n" if (!$noerr && !$scfg);
+    die "sdn '$id' does not exist\n" if (!$noerr && !$scfg);
 
     return $scfg;
 }
index 95a74f58a3523b52f3a0ffcdb3c6d50c92d9e903..f17c2785edb764601178b94988912d2a230f7a50 100644 (file)
@@ -16,7 +16,7 @@ sub sdn_vnets_config {
     die "no sdn vnet ID specified\n" if !$id;
 
     my $scfg = $cfg->{ids}->{$id};
-    die "sdn vnet '$id' does not exists\n" if (!$noerr && !$scfg);
+    die "sdn vnet '$id' does not exist\n" if (!$noerr && !$scfg);
 
     return $scfg;
 }
index e70721350ae90e46dc8fdecc96f0e6f4b8f1aa95..a76ee11b205b27bab3cbd308bf4185d0e3e4e530 100644 (file)
@@ -31,7 +31,7 @@ sub sdn_zones_config {
     die "no sdn zone ID specified\n" if !$id;
 
     my $scfg = $cfg->{ids}->{$id};
-    die "sdn '$id' does not exists\n" if (!$noerr && !$scfg);
+    die "sdn '$id' does not exist\n" if (!$noerr && !$scfg);
 
     return $scfg;
 }