summaryrefslogtreecommitdiffstats
path: root/schemas
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-15 14:53:18 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-15 14:56:58 -0400
commita6b6871ecbc700229969f350b869bd19e785129d (patch)
treef694f842f448d9faf6209c0b4bcbb4362f2d7130 /schemas
parentbe1fd87aa8a3d2900483326b93f4a2800ec716fc (diff)
downloadbcfg2-a6b6871ecbc700229969f350b869bd19e785129d.tar.gz
bcfg2-a6b6871ecbc700229969f350b869bd19e785129d.tar.bz2
bcfg2-a6b6871ecbc700229969f350b869bd19e785129d.zip
Removed deprecated plugins BB, Svcmgr, SGenshi
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>