diff options
author | Sol Jerome <solj@ices.utexas.edu> | 2009-03-03 15:52:42 +0000 |
---|---|---|
committer | Sol Jerome <solj@ices.utexas.edu> | 2009-03-03 15:52:42 +0000 |
commit | f23298cf1b411f5d49f3db03389cf7e493952599 (patch) | |
tree | 41db95b8eff5bae13f802c77f9453e6102cd9ff8 | |
parent | 7b7ed9879cd764784144efd73dd298fe1526e771 (diff) | |
download | bcfg2-f23298cf1b411f5d49f3db03389cf7e493952599.tar.gz bcfg2-f23298cf1b411f5d49f3db03389cf7e493952599.tar.bz2 bcfg2-f23298cf1b411f5d49f3db03389cf7e493952599.zip |
Service type attribute is required
Signed-off-by: Sol Jerome <solj@ices.utexas.edu>
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5096 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | schemas/servicetype.xsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schemas/servicetype.xsd b/schemas/servicetype.xsd index 787ca3110..51a79e6dc 100644 --- a/schemas/servicetype.xsd +++ b/schemas/servicetype.xsd @@ -19,12 +19,12 @@ </xsd:choice> <xsd:attribute name='name' type='xsd:string' use='required'/> <xsd:attribute name='status' type='xsd:string' use='required'/> + <xsd:attribute name='type' type='xsd:string' use='required'/> <xsd:attribute name='port' type='xsd:string'/> <xsd:attribute name='protocol' type='xsd:string'/> <xsd:attribute name='reload' type='xsd:string'/> <xsd:attribute name='FMRI' type='xsd:string'/> <xsd:attribute name='supervised' type='xsd:string'/> - <xsd:attribute name='type' type='xsd:string'/> <xsd:attribute name='sequence' type='xsd:string'/> </xsd:complexType> |