Rename sample_config to genconfig

Most OpenStack projects use genconfig, so use that as our tox
venv.

Change-Id: I2edb5503a114b38fc4c719140fbee935b6b757e6
This commit is contained in:
Brant Knudson 2015-05-15 10:10:28 -05:00
parent 0debc2fbf4
commit 2a3d4b30a7
2 changed files with 5 additions and 5 deletions

View File

@ -471,18 +471,18 @@ generated based upon all of the options available within Keystone. These options
are sourced from the many files around Keystone as well as some external libraries.
If new options are added, primarily located in ``keystone.common.config``, a new
sample configuration file needs to be generated. Generating a new sample configuration
sample configuration file needs to be generated. To generate a new sample configuration
to be included in a commit run:
.. code-block:: bash
$ tox -esample_config -r
$ tox -egenconfig -r
The tox command will place an updated sample config in ``etc/keystone.conf.sample``.
If there is a new external library (e.g. ``oslo.messaging``) that utilizes the
``oslo.config`` package for configuration, it can be added to the list of libraries
found in ``tools/config/oslo.config.generator.rc``.
found in ``config-generator/keystone.conf``.
Translated responses

View File

@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = py27,py33,py34,pep8,docs,sample_config
envlist = py27,py33,py34,pep8,docs,genconfig
[testenv]
usedevelop = True
@ -111,7 +111,7 @@ max-complexity=24
commands=
python setup.py build_sphinx
[testenv:sample_config]
[testenv:genconfig]
commands = oslo-config-generator --config-file=config-generator/keystone.conf
[testenv:bandit]