summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2011-05-11 14:40:10 -0500
committerNarayan Desai <desai@mcs.anl.gov>2011-05-11 14:40:10 -0500
commit6b4d48c2f95918e36aca674d44144c7c5ae6fe19 (patch)
tree088b411f0abca7d8db9a7a882cf389dd9f2d532c /schemas
parent0e75875e9bd9900a6a3c7ab118c448e48829eaef (diff)
parent7a03a93da1701fd14a7c7195b01557ba3e6b24c5 (diff)
downloadbcfg2-6b4d48c2f95918e36aca674d44144c7c5ae6fe19.tar.gz
bcfg2-6b4d48c2f95918e36aca674d44144c7c5ae6fe19.tar.bz2
bcfg2-6b4d48c2f95918e36aca674d44144c7c5ae6fe19.zip
Merge branch 'master' of git.mcs.anl.gov:bcfg2
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>