From 85533e98807b1eb992f4cc6c46e9e189d2e704bb Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Thu, 4 Apr 2019 10:18:32 +0200 Subject: [PATCH] vxlanmulticast plugin : make uplink-id && multicast addres non optional --- PVE/Network/Network/VxlanMulticastPlugin.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/Network/Network/VxlanMulticastPlugin.pm b/PVE/Network/Network/VxlanMulticastPlugin.pm index bcdc133..99383e5 100644 --- a/PVE/Network/Network/VxlanMulticastPlugin.pm +++ b/PVE/Network/Network/VxlanMulticastPlugin.pm @@ -36,8 +36,8 @@ sub properties { sub options { return { - 'uplink-id' => { optional => 1 }, - 'multicast-address' => { fixed => 1 }, + 'uplink-id' => { optional => 0 }, + 'multicast-address' => { optional => 0 }, 'vxlan-allowed' => { optional => 1 }, }; } -- 2.39.5