summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Joseph Barnhart Clark <dclark@pobox.com>2006-10-19 12:23:35 +0000
committerDaniel Joseph Barnhart Clark <dclark@pobox.com>2006-10-19 12:23:35 +0000
commitfa10e4f2068f9c4ddf93e449d7bae7f16de66f96 (patch)
treeb68c12c06d6fe7cdd9b01992e01bba43c77d519c
parent9e1d5dcf897874a7e7bf021e779400353b46df4a (diff)
downloadbcfg2-fa10e4f2068f9c4ddf93e449d7bae7f16de66f96.tar.gz
bcfg2-fa10e4f2068f9c4ddf93e449d7bae7f16de66f96.tar.bz2
bcfg2-fa10e4f2068f9c4ddf93e449d7bae7f16de66f96.zip
Added "aix" and "auto" to list of valid "toolset=" values. As of 0.8.5 the toolset value is just ignored by the code if favor of automatic tools detection, however
for backwards compatability the toolset attribute is going to be around at least until 0.8.6. git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2447 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--doc/specs.xml2
-rw-r--r--schemas/metadata.xsd2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/specs.xml b/doc/specs.xml
index 5f5353d7c..13619296a 100644
--- a/doc/specs.xml
+++ b/doc/specs.xml
@@ -81,7 +81,7 @@
<row><entry>toolset</entry>
<entry>Describes which client-side logic should be used to
make configuration
- changes</entry><entry>(rh|debian|solaris)</entry></row>
+ changes</entry><entry>(rh|debian|solaris|aix|auto)</entry></row>
<row><entry>category</entry>
<entry>A group can only contain one instance of a group in
any category. This provides the basis for representing
diff --git a/schemas/metadata.xsd b/schemas/metadata.xsd
index 30e280dee..281bf72fd 100644
--- a/schemas/metadata.xsd
+++ b/schemas/metadata.xsd
@@ -10,7 +10,7 @@
<xsd:simpleType name='toolsetType'>
<xsd:restriction base="xsd:string">
- <xsd:pattern value="rh|debian|solaris"/>
+ <xsd:pattern value="rh|debian|solaris|aix|auto"/>
</xsd:restriction>
</xsd:simpleType>