]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Add UUID definition required by storage encryption import
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 14 Sep 2009 20:09:07 +0000 (21:09 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 14 Sep 2009 20:09:49 +0000 (21:09 +0100)
* docs/schemas/storagevol.rng: storage encryption rules require
  that UUID type be defined

docs/schemas/storagevol.rng

index 00b70f692480290a969a5f212eb69ade860078be..287db85493e21f1584b8a8ab9937542d122ff29b 100644 (file)
     </data>
   </define>
 
+  <define name="UUID">
+    <choice>
+      <data type="string">
+        <param name="pattern">[a-fA-F0-9]{32}</param>
+      </data>
+      <data type="string">
+        <param name="pattern">[a-fA-F0-9]{8}\-([a-fA-F0-9]{4}\-){3}[a-fA-F0-9]{12}</param>
+      </data>
+    </choice>
+  </define>
 
 </grammar>