blob: 60e8983c4a9918003e3b7a46134915bdac494579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
<xsd:annotation>
<xsd:documentation>
atomic configuration types schema for bcfg2
Narayan Desai, Argonne National Laboratory
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name='ConfigFileType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
</xsd:complexType>
<xsd:complexType name='DirectoryType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
<xsd:attribute type='xsd:string' name='perms'/>
<xsd:attribute type='xsd:string' name='owner'/>
<xsd:attribute type='xsd:string' name='group'/>
</xsd:complexType>
<xsd:complexType name='PackageType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
</xsd:complexType>
<xsd:complexType name='ServiceType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
</xsd:complexType>
<xsd:complexType name='SymLinkType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
<xsd:attribute type='xsd:string' name='to' use='required'/>
</xsd:complexType>
</xsd:schema>
|