summaryrefslogtreecommitdiffstats
path: root/schemas/pkglist.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
commitedca0b698637c3fd0a70af7e4752a46afca938d3 (patch)
tree658fad717833200ccb4e3725c811ccce7c10fc8d /schemas/pkglist.xsd
parent8ca8a153dfc6bd81ede9f5cff1ee3f111ae053ee (diff)
downloadbcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.gz
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.bz2
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.zip
last step of repo switches
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1716 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/pkglist.xsd')
-rw-r--r--schemas/pkglist.xsd13
1 files changed, 7 insertions, 6 deletions
diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd
index 31fa9959d..d262963ee 100644
--- a/schemas/pkglist.xsd
+++ b/schemas/pkglist.xsd
@@ -4,7 +4,7 @@
<xsd:documentation>
package list schema for bcfg2
Narayan Desai, Argonne National Laboratory
- $Id: $
+ $Id$
</xsd:documentation>
</xsd:annotation>
@@ -16,20 +16,21 @@
<xsd:attribute type='xsd:string' name='simplefile'/>
</xsd:complexType>
- <xsd:complexType name='LocationType'>
+ <xsd:complexType name='GroupType'>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='Package' type='PackageType'/>
</xsd:choice>
- <xsd:attribute type='xsd:string' name='uri' use='required'/>
- <xsd:attribute type='xsd:string' name='type' use='required'/>
+ <xsd:attribute type='xsd:string' name='name' use='required'/>
</xsd:complexType>
<xsd:element name='PackageList'>
<xsd:complexType>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
- <xsd:element name='Location' type='LocationType'/>
+ <xsd:element name='Group' type='GroupType'/>
</xsd:choice>
- <xsd:attribute name='image' type='xsd:string' use='required'/>
+ <xsd:attribute name='priority' type='xsd:integer' use='required'/>
+ <xsd:attribute name='type' type='xsd:string' use='required'/>
+ <xsd:attribute name='uri' type='xsd:string' use='optional'/>
</xsd:complexType>
</xsd:element>