summaryrefslogtreecommitdiffstats
path: root/schemas/rules.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2010-06-17 16:11:39 +0000
committerSol Jerome <sol.jerome@gmail.com>2010-06-21 14:11:34 -0500
commitfd92b580848414bd8785e1c4f3319b56c09d29ef (patch)
tree7d63240f7808039edc832d4c78cdb908fe3fe3bd /schemas/rules.xsd
parente1479f1d62577df523393f399d5698671c8bc3a5 (diff)
downloadbcfg2-fd92b580848414bd8785e1c4f3319b56c09d29ef.tar.gz
bcfg2-fd92b580848414bd8785e1c4f3319b56c09d29ef.tar.bz2
bcfg2-fd92b580848414bd8785e1c4f3319b56c09d29ef.zip
Tighten schema for package entries in Rules (Resolves root cause of #894)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5945 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/rules.xsd')
-rw-r--r--schemas/rules.xsd44
1 files changed, 43 insertions, 1 deletions
diff --git a/schemas/rules.xsd b/schemas/rules.xsd
index a544f7a8f..207eb65e5 100644
--- a/schemas/rules.xsd
+++ b/schemas/rules.xsd
@@ -8,10 +8,52 @@
</xsd:documentation>
</xsd:annotation>
- <xsd:include schemaLocation="pkgtype.xsd"/>
<xsd:include schemaLocation="servicetype.xsd"/>
<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:element name='Instance'>
+ <xsd:complexType>
+ <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 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:attribute name='verify_flags' type='xsd:string'/>
+ <xsd:attribute name='installed_action' type='xsd:string'/>
+ <xsd:attribute name='version_fail_action' type='xsd:string'/>
+ <xsd:attribute name='verify_fail_action' type='xsd:string'/>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ <xsd:attribute type='xsd:string' name='name' use='required'/>
+ <xsd:attribute type='xsd:string' name='version' use='required'/>
+ <xsd:attribute type='xsd:string' name='file'/>
+ <xsd:attribute type='xsd:string' name='verify'/>
+ <xsd:attribute type='xsd:string' name='simplefile'/>
+ <xsd:attribute type='xsd:string' name='reloc'/>
+ <xsd:attribute type='xsd:string' name='multiarch'/>
+ <xsd:attribute type='xsd:string' name='srcs'/>
+ <xsd:attribute type='xsd:string' name='type' use='required'/>
+ <xsd:attribute type='xsd:string' name='bname'/>
+ <xsd:attribute name='pkg_checks' type='xsd:string'/>
+ <xsd:attribute name='verify_flags' type='xsd:string'/>
+ </xsd:complexType>
+
<xsd:complexType name='DirectoryType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
<xsd:attribute type='xsd:string' name='perms'/>