summaryrefslogtreecommitdiffstats
path: root/schemas/fileprobes.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2011-05-11 10:30:33 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2011-05-11 10:30:33 -0400
commit2c838764f06b83a05ccbc7ad99d822d7c3e026a2 (patch)
tree29561826f7a60cfe14433dd97bad5bffe06b542e /schemas/fileprobes.xsd
parent9796db4944c53fe721f8e47231350514f3582967 (diff)
downloadbcfg2-2c838764f06b83a05ccbc7ad99d822d7c3e026a2.tar.gz
bcfg2-2c838764f06b83a05ccbc7ad99d822d7c3e026a2.tar.bz2
bcfg2-2c838764f06b83a05ccbc7ad99d822d7c3e026a2.zip
Added FileProbes plugin.
Diffstat (limited to 'schemas/fileprobes.xsd')
-rw-r--r--schemas/fileprobes.xsd34
1 files changed, 34 insertions, 0 deletions
diff --git a/schemas/fileprobes.xsd b/schemas/fileprobes.xsd
new file mode 100644
index 000000000..112047836
--- /dev/null
+++ b/schemas/fileprobes.xsd
@@ -0,0 +1,34 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+ <xsd:annotation>
+ <xsd:documentation>
+ FileProbes plugin config schema for bcfg2
+ Chris St. Pierre
+ </xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:complexType name="GroupType">
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:element name="FileProbe" type="FileProbeType"/>
+ <xsd:element name="Group" type="GroupType"/>
+ <xsd:element name="Client" type="GroupType"/>
+ </xsd:choice>
+ <xsd:attribute type="xsd:string" name="name" use="required"/>
+ <xsd:attribute type="xsd:string" name="negate"/>
+ </xsd:complexType>
+
+ <xsd:complexType name="FileProbeType">
+ <xsd:attribute type="xsd:string" name="name" use="required"/>
+ <xsd:attribute type="xsd:string" name="base64"/>
+ <xsd:attribute type="xsd:string" name="update"/>
+ </xsd:complexType>
+
+ <xsd:element name="FileProbes">
+ <xsd:complexType>
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:element name="FileProbe" type="FileProbeType"/>
+ <xsd:element name="Group" type="GroupType"/>
+ <xsd:element name="Client" type="GroupType"/>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>