summaryrefslogtreecommitdiffstats
path: root/schemas/types.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2007-01-24 02:19:43 +0000
committerNarayan Desai <desai@mcs.anl.gov>2007-01-24 02:19:43 +0000
commitb238887ad8172c6a613b7d68bb551dac1aac57bb (patch)
tree1a0ce284f2c9b2b95447f4ea768b02e68f04797b /schemas/types.xsd
parent9182bcf5871ee041e789bb48d057323b6bc6b4b1 (diff)
downloadbcfg2-b238887ad8172c6a613b7d68bb551dac1aac57bb.tar.gz
bcfg2-b238887ad8172c6a613b7d68bb551dac1aac57bb.tar.bz2
bcfg2-b238887ad8172c6a613b7d68bb551dac1aac57bb.zip
Implement Action support
- Schema addition for bundles/rules - Tool driver for actions - Frame support for pre-actions and post-actions - Frame blacklist support (to preclude blocked entries from getting installed on the post-clobber pass) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2713 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/types.xsd')
-rw-r--r--schemas/types.xsd26
1 files changed, 24 insertions, 2 deletions
diff --git a/schemas/types.xsd b/schemas/types.xsd
index b9d7131dd..f722309f8 100644
--- a/schemas/types.xsd
+++ b/schemas/types.xsd
@@ -8,7 +8,7 @@
</xsd:documentation>
</xsd:annotation>
- <xsd:simpleType name='PackageTypeEnum'>
+ <xsd:simpleType name='PackageTypeEnum'>
<xsd:restriction base='xsd:string'>
<xsd:enumeration value='deb' />
<xsd:enumeration value='rpm' />
@@ -25,4 +25,26 @@
</xsd:restriction>
</xsd:simpleType>
-</xsd:schema> \ No newline at end of file
+ <xsd:simpleType name='ActionTimingEnum'>
+ <xsd:restriction base='xsd:string'>
+ <xsd:enumeration value='both'/>
+ <xsd:enumeration value='pre'/>
+ <xsd:enumeration value='post'/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name='ActionWhenEnum'>
+ <xsd:restriction base='xsd:string'>
+ <xsd:enumeration value='modified'/>
+ <xsd:enumeration value='always'/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name='ActionStatusEnum'>
+ <xsd:restriction base='xsd:string'>
+ <xsd:enumeration value='ignore'/>
+ <xsd:enumeration value='check'/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+</xsd:schema>