]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/JSONSchema.pm
JSONSchema: register 'pve-snapshot-name' here to avoid cyclic dependencies
[pve-common.git] / src / PVE / JSONSchema.pm
index 10037f50f6689b049728ec0c3195573b76cca8f9..f0fc2aa0b1336bcbf17bd593957f26afcb996ecd 100644 (file)
@@ -113,6 +113,12 @@ register_standard_option('pve-output-format', {
     default => 'text',
 });
 
+register_standard_option('pve-snapshot-name', {
+    description => "The name of the snapshot.",
+    type => 'string', format => 'pve-configid',
+    maxLength => 40,
+});
+
 my $format_list = {};
 
 sub register_format {
@@ -208,6 +214,8 @@ register_format('mac-addr', \&pve_verify_mac_addr);
 sub pve_verify_mac_addr {
     my ($mac_addr, $noerr) = @_;
 
+    # don't allow I/G bit to be set, most of the time it breaks things, see:
+    # https://pve.proxmox.com/pipermail/pve-devel/2019-March/035998.html
     if ($mac_addr !~ m/^[a-f0-9][02468ace](?::[a-f0-9]{2}){5}$/i) {
        return undef if $noerr;
        die "value does not look like a valid unicast MAC address\n";
@@ -218,6 +226,7 @@ sub pve_verify_mac_addr {
 register_standard_option('mac-addr', {
     type => 'string',
     description => 'Unicast MAC address.',
+    verbose_description => 'A common MAC address with the I/G (Individual/Group) bit not set.',
     format_description => "XX:XX:XX:XX:XX:XX",
     optional => 1,
     format => 'mac-addr',