summaryrefslogtreecommitdiff
path: root/src/PVE/API2/Network/SDN/Zones.pm
diff options
context:
space:
mode:
Diffstat (limited to 'src/PVE/API2/Network/SDN/Zones.pm')
-rw-r--r--src/PVE/API2/Network/SDN/Zones.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/PVE/API2/Network/SDN/Zones.pm b/src/PVE/API2/Network/SDN/Zones.pm
index b09c9ad..35e2f7f 100644
--- a/src/PVE/API2/Network/SDN/Zones.pm
+++ b/src/PVE/API2/Network/SDN/Zones.pm
@@ -186,6 +186,10 @@ __PACKAGE__->register_method ({
return &$api_sdn_zones_config($cfg, $param->{zone});
}});
+sub create_etc_interfaces_sdn_dir {
+ mkdir("/etc/pve/sdn");
+}
+
__PACKAGE__->register_method ({
name => 'create',
protected => 1,
@@ -207,7 +211,7 @@ __PACKAGE__->register_method ({
my $opts = $plugin->check_config($id, $param, 1, 1);
PVE::Cluster::check_cfs_quorum();
- mkdir("/etc/pve/sdn");
+ create_etc_interfaces_sdn_dir();
PVE::Network::SDN::lock_sdn_config(sub {
my $zone_cfg = PVE::Network::SDN::Zones::config();