summaryrefslogtreecommitdiffstats
path: root/schemas/grouppatterns.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-07-15 12:04:19 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-07-15 12:04:19 +0000
commitf7c16272eed2b130e05ee23509cbee35575bc411 (patch)
treef625a701282b0bfb2d88760b78732299f8958b9d /schemas/grouppatterns.xsd
parent9e6d589d2d1b3ed536354bf7ec61601d06cad75b (diff)
downloadbcfg2-f7c16272eed2b130e05ee23509cbee35575bc411.tar.gz
bcfg2-f7c16272eed2b130e05ee23509cbee35575bc411.tar.bz2
bcfg2-f7c16272eed2b130e05ee23509cbee35575bc411.zip
GroupPatterns plugin: initial implementation
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5327 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/grouppatterns.xsd')
-rw-r--r--schemas/grouppatterns.xsd26
1 files changed, 26 insertions, 0 deletions
diff --git a/schemas/grouppatterns.xsd b/schemas/grouppatterns.xsd
new file mode 100644
index 000000000..9d11c9c13
--- /dev/null
+++ b/schemas/grouppatterns.xsd
@@ -0,0 +1,26 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+
+ <xsd:annotation>
+ <xsd:documentation>
+ group patterns config schema for bcfg2
+ Narayan Desai, Argonne National Laboratory
+ </xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:complexType name='PatternType'>
+ <xsd:sequence>
+ <xsd:element name="NamePattern" type="xsd:string" minOccurs='1'
+ maxOccurs='1'/>
+ <xsd:element name="Group" type="xsd:string" minOccurs='1'
+ maxOccurs='1'/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name='GroupPatterns'>
+ <xsd:complexType>
+ <xsd:choice minOccurs='1' maxOccurs='unbounded'>
+ <xsd:element name='GroupPattern' type='PatternType'/>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>