]> git.proxmox.com Git - pve-manager.git/blobdiff - PVE/NodeConfig.pm
node: config: make wakeonlan a property string
[pve-manager.git] / PVE / NodeConfig.pm
index 941e6009e8cbd9b681c3f69f341bcf30be8b7ed0..a09c9be103a4a378351df80eafb5431069a07178 100644 (file)
@@ -85,12 +85,6 @@ my $confdesc = {
        maxLength => 64 * 1024,
        optional => 1,
     },
-    wakeonlan => {
-       type => 'string',
-       description => 'MAC address for wake on LAN',
-       format => 'mac-addr',
-       optional => 1,
-    },
     'startall-onboot-delay' => {
        description => 'Initial delay in seconds, before starting all the Virtual Guests with on-boot enabled.',
        type => 'integer',
@@ -101,6 +95,23 @@ my $confdesc = {
     },
 };
 
+my $wakeonlan_desc = {
+    mac => {
+       type => 'string',
+       description => 'MAC address for wake on LAN',
+       format => 'mac-addr',
+       format_description => 'MAC address',
+       default_key => 1,
+    },
+};
+
+$confdesc->{wakeonlan} = {
+    type => 'string',
+    description => 'Node specific wake on LAN settings.',
+    format => $wakeonlan_desc,
+    optional => 1,
+};
+
 my $acme_domain_desc = {
     domain => {
        type => 'string',
@@ -193,6 +204,22 @@ sub write_node_config {
     return $raw;
 }
 
+sub get_wakeonlan_config {
+    my ($node_conf) = @_;
+
+    $node_conf //= {};
+
+    my $res = {};
+    if (defined($node_conf->{wakeonlan})) {
+       $res = eval {
+           PVE::JSONSchema::parse_property_string($wakeonlan_desc, $node_conf->{wakeonlan})
+       };
+       die $@ if $@;
+    }
+
+    return $res;
+}
+
 # we always convert domain values to lower case, since DNS entries are not case
 # sensitive and ACME implementations might convert the ordered identifiers
 # to lower case