diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-06-07 19:53:57 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-06-07 19:53:57 +0000 |
commit | 4efd08541461a4da16086506b0ccc21c150468cc (patch) | |
tree | f48c54d823fcdc68e97eb9fd39d7d11551d195bf | |
parent | 9a44c84bd15c04723226f67f343bd5c4682de9f2 (diff) | |
download | bcfg2-4efd08541461a4da16086506b0ccc21c150468cc.tar.gz bcfg2-4efd08541461a4da16086506b0ccc21c150468cc.tar.bz2 bcfg2-4efd08541461a4da16086506b0ccc21c150468cc.zip |
Schema updates to accomodate Package/Instance entries for *ng
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3265 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | schemas/pkglist.xsd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd index 457b91ecb..eae1b1e11 100644 --- a/schemas/pkglist.xsd +++ b/schemas/pkglist.xsd @@ -17,6 +17,16 @@ <xsd:attribute type='xsd:string' name='name'/> </xsd:complexType> </xsd:element> + <xsd:element name='Instance'> + <xsd:complexType> + <xsd:attribute name='arch' type='xsd:string'/> + <xsd:attribute name='epoch' type='xsd:string'/> + <xsd:attribute name='version' type='xsd:string'/> + <xsd:attribute name='release' type='xsd:string'/> + <xsd:attribute name='simplefile' type='xsd:string'/> + <xsd:attribute name='pkg_verify' type='xsd:string'/> + </xsd:complexType> + </xsd:element> </xsd:choice> <xsd:attribute type='xsd:string' name='name'/> <xsd:attribute type='xsd:string' name='version'/> @@ -28,6 +38,7 @@ <xsd:attribute type='xsd:string' name='srcs'/> <xsd:attribute type='xsd:string' name='type'/> <xsd:attribute type='xsd:string' name='bname'/> + <xsd:attribute name='pkg_checks' type='xsd:string'/> </xsd:complexType> <xsd:complexType name='ContainerType'> |