]> git.proxmox.com Git - pve-network.git/commitdiff
vxlanmulticast plugin : make uplink-id && multicast addres non optional
authorAlexandre Derumier <aderumier@odiso.com>
Thu, 4 Apr 2019 08:18:32 +0000 (10:18 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 4 Apr 2019 09:12:11 +0000 (11:12 +0200)
PVE/Network/Network/VxlanMulticastPlugin.pm

index bcdc133c8dcffd02a7c622549d401c3880ef757b..99383e57fe7a7cede3fb87b6c4610edfa77eb411 100644 (file)
@@ -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 },
     };
 }