summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
Diffstat (limited to 'schemas')
-rw-r--r--schemas/bundle.xsd2
-rw-r--r--schemas/services.xsd33
2 files changed, 1 insertions, 34 deletions
diff --git a/schemas/bundle.xsd b/schemas/bundle.xsd
index b72b174e2..6306b6da4 100644
--- a/schemas/bundle.xsd
+++ b/schemas/bundle.xsd
@@ -17,7 +17,7 @@
<xsd:include schemaLocation="pathentry.xsd"/>
<xsd:include schemaLocation="rules.xsd"/>
<xsd:include schemaLocation="types.xsd"/>
- <xsd:include schemaLocation="services.xsd"/>
+ <xsd:include schemaLocation="servicetype.xsd"/>
<xsd:group name="bundleElements">
<xsd:choice>
diff --git a/schemas/services.xsd b/schemas/services.xsd
deleted file mode 100644
index b91e851d2..000000000
--- a/schemas/services.xsd
+++ /dev/null
@@ -1,33 +0,0 @@
-<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
-
- <xsd:annotation>
- <xsd:documentation>
- services schema for bcfg2
- Narayan Desai, Argonne National Laboratory
- </xsd:documentation>
- </xsd:annotation>
-
- <xsd:include schemaLocation="servicetype.xsd"/>
-
- <xsd:complexType name='ServiceContainerType'>
- <xsd:choice minOccurs='0' maxOccurs='unbounded'>
- <xsd:element name='Service' type='ServiceType'/>
- <xsd:element name='Group' type='ServiceContainerType'/>
- <xsd:element name='Client' type='ServiceContainerType'/>
- </xsd:choice>
- <xsd:attribute name='name' type='xsd:string'/>
- <xsd:attribute name='negate' type='xsd:string'/>
- </xsd:complexType>
-
- <xsd:element name='Services'>
- <xsd:complexType>
- <xsd:choice minOccurs='0' maxOccurs='unbounded'>
- <xsd:element name='Service' type='ServiceType'/>
- <xsd:element name='Group' type='ServiceContainerType'/>
- <xsd:element name='Client' type='ServiceContainerType'/>
- </xsd:choice>
- <xsd:attribute name='priority' type='xsd:integer'/>
- </xsd:complexType>
- </xsd:element>
-
-</xsd:schema>