summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-04-11 23:29:08 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-04-11 23:29:08 +0000
commit3fed5579648f6ad385988b9fba41458d6c143788 (patch)
tree70d4e588356b8bbc79da702ebf5bee400aabc7d5
parent460f25d2f2e637f9ab965478984e65896491ee3b (diff)
downloadbcfg2-3fed5579648f6ad385988b9fba41458d6c143788.tar.gz
bcfg2-3fed5579648f6ad385988b9fba41458d6c143788.tar.bz2
bcfg2-3fed5579648f6ad385988b9fba41458d6c143788.zip
Fix the rules schema
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1841 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--schemas/rules.xsd4
-rwxr-xr-xtools/export.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/schemas/rules.xsd b/schemas/rules.xsd
index 46c62bd27..526bab9e6 100644
--- a/schemas/rules.xsd
+++ b/schemas/rules.xsd
@@ -45,8 +45,8 @@
<xsd:element name='SymLink' type='SymLinkType'/>
<xsd:element name='Package' type='PackageType'/>
<xsd:element name='Permissions' type='PermissionsType'/>
- <xsd:element name='Group' type='ContainerType'/>
- <xsd:element name='Client' type='ContainerType'/>
+ <xsd:element name='Group' type='RContainerType'/>
+ <xsd:element name='Client' type='RContainerType'/>
</xsd:choice>
<xsd:attribute name='name' type='xsd:string'/>
</xsd:complexType>
diff --git a/tools/export.sh b/tools/export.sh
index 5b0ff92e5..7fe0b8d72 100755
--- a/tools/export.sh
+++ b/tools/export.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env sh
name="bcfg2"
-repo="https://svn.mcs.anl.gov/repos/bcfg2"
+repo="https://svn.mcs.anl.gov/repos/bcfg"
version="${1}"
expath="/tmp/${name}-${version}/"
tarname="/tmp/${name}-${version}.tar.gz"