summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
authorMatt Schwager <schwag09@gmail.com>2012-10-10 10:17:46 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 08:35:32 -0500
commit1ce53cdcd4803d4b0c3c9440ec352addf534bd67 (patch)
treeb92ab5e7400f63ed502f1605237ec849cec496a1 /schemas
parenta0adce7c4a93a152a7d4d1d585bd234faad89816 (diff)
downloadbcfg2-1ce53cdcd4803d4b0c3c9440ec352addf534bd67.tar.gz
bcfg2-1ce53cdcd4803d4b0c3c9440ec352addf534bd67.tar.bz2
bcfg2-1ce53cdcd4803d4b0c3c9440ec352addf534bd67.zip
Added access control list's XML schema
Diffstat (limited to 'schemas')
-rw-r--r--schemas/acl.xsd20
1 files changed, 20 insertions, 0 deletions
diff --git a/schemas/acl.xsd b/schemas/acl.xsd
new file mode 100644
index 000000000..af0d8e318
--- /dev/null
+++ b/schemas/acl.xsd
@@ -0,0 +1,20 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+
+ <xsd:annotation>
+ <xsd:documentation>
+ acl config schema for bcfg2
+ Matt Schwager
+ </xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace"
+ schemaLocation="xml.xsd"/>
+
+ <xsd:complexType name="IPs">
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:element name="IP" type="xsd:string" minOccurs="1"
+ maxOccurs="unbounded"/>
+ </xsd:choice>
+ </xsd:complexType>
+
+</xsd:schema>