diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-04-16 19:56:41 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-04-16 19:56:41 +0000 |
commit | db28a4c3b9cfb636808393deab328881bd652ef9 (patch) | |
tree | 4934b8e3c73cb8732c06f213b970f1d243b4bf4e | |
parent | 1a9234d10ca90bb47cbf99a1fc54f126eabc35fa (diff) | |
download | bcfg2-db28a4c3b9cfb636808393deab328881bd652ef9.tar.gz bcfg2-db28a4c3b9cfb636808393deab328881bd652ef9.tar.bz2 bcfg2-db28a4c3b9cfb636808393deab328881bd652ef9.zip |
Schema fix for package ignores
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3046 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | schemas/pkglist.xsd | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd index e92e637a6..457b91ecb 100644 --- a/schemas/pkglist.xsd +++ b/schemas/pkglist.xsd @@ -11,6 +11,13 @@ <xsd:include schemaLocation="types.xsd"/> <xsd:complexType name='PackageType'> + <xsd:choice minOccurs='0' maxOccurs='unbounded'> + <xsd:element name='Ignore'> + <xsd:complexType> + <xsd:attribute type='xsd:string' name='name'/> + </xsd:complexType> + </xsd:element> + </xsd:choice> <xsd:attribute type='xsd:string' name='name'/> <xsd:attribute type='xsd:string' name='version'/> <xsd:attribute type='xsd:string' name='file'/> @@ -45,4 +52,4 @@ <xsd:attribute type='xsd:string' name='srcs'/> </xsd:complexType> </xsd:element> -</xsd:schema>
\ No newline at end of file +</xsd:schema> |