diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2006-04-12 00:54:08 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2006-04-12 00:54:08 +0000 |
commit | dd9b0b2ecbe0e6bcef23314a0e41184e380b674a (patch) | |
tree | 7bf51d7a3bec7438caff8840bbf09b3a1f8a7d0a | |
parent | 3fed5579648f6ad385988b9fba41458d6c143788 (diff) | |
download | bcfg2-dd9b0b2ecbe0e6bcef23314a0e41184e380b674a.tar.gz bcfg2-dd9b0b2ecbe0e6bcef23314a0e41184e380b674a.tar.bz2 bcfg2-dd9b0b2ecbe0e6bcef23314a0e41184e380b674a.zip |
Add missing schema file
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1842 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | schemas/types.xsd | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/schemas/types.xsd b/schemas/types.xsd new file mode 100644 index 000000000..57f56e84b --- /dev/null +++ b/schemas/types.xsd @@ -0,0 +1,27 @@ +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en"> + + <xsd:annotation> + <xsd:documentation> + string enumeration definitions for bcfg2 + Narayan Desai, Argonne National Laboratory + $Id$ + </xsd:documentation> + </xsd:annotation> + + <xsd:simpleType name='PackageTypeEnum'> + <xsd:restriction base='xsd:string'> + <xsd:enumeration value='deb' /> + <xsd:enumeration value='rpm' /> + <xsd:enumeration value='encap' /> + <xsd:enumeration value='sysv' /> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name='StatusEnum'> + <xsd:restriction base='xsd:string'> + <xsd:enumeration value='on'/> + <xsd:enumeration value='off'/> + </xsd:restriction> + </xsd:simpleType> + +</xsd:schema>
\ No newline at end of file |