summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--schemas/bundle.xsd4
-rw-r--r--schemas/pathentry.xsd9
2 files changed, 11 insertions, 2 deletions
diff --git a/schemas/bundle.xsd b/schemas/bundle.xsd
index 5b98fcf7b..894dad116 100644
--- a/schemas/bundle.xsd
+++ b/schemas/bundle.xsd
@@ -24,7 +24,7 @@
<xsd:element name='Permissions' type='StructureEntry'/>
<xsd:element name='Action' type='StructureEntry'/>
<xsd:element name='BoundPackage' type='PackageType'/>
- <xsd:element name='BoundPath' type='PathEntry'/>
+ <xsd:element name='BoundPath' type='BoundPathEntry'/>
<xsd:element name='BoundService' type='ServiceType'/>
<xsd:element name='BoundDirectory' type='DirectoryType'/>
<xsd:element name='BoundSymLink' type='SymLinkType'/>
@@ -48,7 +48,7 @@
<xsd:element name='Permissions' type='StructureEntry'/>
<xsd:element name='Action' type='StructureEntry'/>
<xsd:element name='BoundPackage' type='PackageType'/>
- <xsd:element name='BoundPath' type='PathEntry'/>
+ <xsd:element name='BoundPath' type='BoundPathEntry'/>
<xsd:element name='BoundService' type='ServiceType'/>
<xsd:element name='BoundDirectory' type='DirectoryType'/>
<xsd:element name='BoundSymLink' type='SymLinkType'/>
diff --git a/schemas/pathentry.xsd b/schemas/pathentry.xsd
index db1a29e1a..e564aaa90 100644
--- a/schemas/pathentry.xsd
+++ b/schemas/pathentry.xsd
@@ -12,4 +12,13 @@
<xsd:attribute type='xsd:string' name='name' use='required'/>
<xsd:attribute type='xsd:string' name='altsrc' />
</xsd:complexType>
+
+ <xsd:complexType name='BoundPathEntry'>
+ <xsd:attribute type='xsd:string' name='name' use='required'/>
+ <xsd:attribute type='xsd:string' name='group' use='optional'/>
+ <xsd:attribute type='xsd:string' name='owner' use='optional'/>
+ <xsd:attribute type='xsd:string' name='perms' use='optional'/>
+ <xsd:attribute type='xsd:string' name='type' use='optional'/>
+ <xsd:attribute type='xsd:string' name='altsrc' use='optional'/>
+ </xsd:complexType>
</xsd:schema>