summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2011-05-11 10:30:33 -0400
committerSol Jerome <sol.jerome@gmail.com>2011-06-14 12:36:45 -0500
commit34e5e12fd58ec4b0015abdf1a04a4f684c9194ba (patch)
treed0f141fe95ef3ac4c52495df4641e9b9569a9090 /schemas
parent64a49246688d0e8cb1481497ebbceac104220eda (diff)
downloadbcfg2-34e5e12fd58ec4b0015abdf1a04a4f684c9194ba.tar.gz
bcfg2-34e5e12fd58ec4b0015abdf1a04a4f684c9194ba.tar.bz2
bcfg2-34e5e12fd58ec4b0015abdf1a04a4f684c9194ba.zip
Added FileProbes plugin.
Diffstat (limited to 'schemas')
-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>