diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-07-28 16:05:35 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-07-28 16:05:35 +0000 |
commit | e338fc5a850a25000e5fffc991f65b60deb9fb2b (patch) | |
tree | 4aee9a54f2c51f7cb50ade8a91ce79624f07c74c | |
parent | 61ebc09963d04feba781534399b9d8aa126aa8e3 (diff) | |
download | bcfg2-e338fc5a850a25000e5fffc991f65b60deb9fb2b.tar.gz bcfg2-e338fc5a850a25000e5fffc991f65b60deb9fb2b.tar.bz2 bcfg2-e338fc5a850a25000e5fffc991f65b60deb9fb2b.zip |
make old ping data in metadata schema explicitly optional
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4827 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | schemas/clients.xsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/schemas/clients.xsd b/schemas/clients.xsd index 1dfaf73d9..d7701f837 100644 --- a/schemas/clients.xsd +++ b/schemas/clients.xsd @@ -19,12 +19,12 @@ </xsd:choice> <xsd:attribute type='xsd:string' name='name' use='required'/> <xsd:attribute type='xsd:string' name='profile' use='required'/> - <xsd:attribute type='xsd:string' name='pingable'/> + <xsd:attribute type='xsd:string' name='pingable' use='optional'/> <xsd:attribute type='xsd:string' name='uuid'/> <xsd:attribute type='xsd:string' name='password'/> <xsd:attribute type='xsd:string' name='location'/> <xsd:attribute type='xsd:string' name='secure'/> - <xsd:attribute type='xsd:string' name='pingtime'/> + <xsd:attribute type='xsd:string' name='pingtime' use='optional'/> <xsd:attribute type='xsd:string' name='address'/> </xsd:complexType> |