Some various comments about the new repos, more to likely come.

This commit is contained in:
Michael DeHaan 2014-09-26 17:52:50 -04:00
commit e8fe306cef
6 changed files with 91 additions and 16 deletions

View file

@ -192,6 +192,7 @@ def process_module(module, options, env, template, outputname, module_map):
print "rendering: %s" % module
fname = module_map[module]
# ignore files with extensions
@ -209,6 +210,13 @@ def process_module(module, options, env, template, outputname, module_map):
if doc is None:
return "SKIPPED"
if "core" in module:
print "CORE"
doc['core'] = True
else:
doc['core'] = False
all_keys = []
if not 'version_added' in doc:

View file

@ -101,3 +101,31 @@ Examples
{% endfor %}
{% endif %}
Developers, Testers, and Bug Reporting
--------------------------------------
{% set repo = "https://github.com/ansible/ansible-modules-extras" %}
{% set tracker = "https://github.com/ansible/ansible-modules-extras/issues" %}
{% if core %}
{% set repo = "https://github.com/ansible/ansible-modules-core" %}
{% set tracker = "https://github.com/ansible/ansible-modules-core/issues" %}
{% endif %}
This source of this module is hosted on GitHub in the `{{ repo }} <{{ repo }}>`_ repo.
If you believe you have found a bug in this module, and are already running the latest stable or development version of Ansbile, first look in the issue tracker at `{{ tracker }} <{{ tracker }}>`_ to see if a bug has already been filed. If not, we would be greatful if you would file one.
Should you have a question rather than a bug report, inquries are welcome on the `ansible-project google group <https://groups.google.com/forum/#!forum/ansible-project>` or on Ansible's "#ansible" channel, located on irc.freenode.net. Development oriented topics should instead use the similar `ansible-devel google group <https://groups.google.com/forum/#!forum/ansible-project>`_.
Documentation updates for this module can also be edited directly by submitting a pull request to the module source code, just look for the "DOCUMENTATION" block in the source tree.
{% if not core %}
Note that this module is designated a "extras" module. Non-core modules are still fully usuable, but may recieve slightly lower response rates for issues and pull requests.
Popular "extras" modules may be promoted to core modules over time.
{% endif %}
For help in developing on modules, should you be so inclined, please read :doc:`community`, :doc:`developing_test_pr` and :doc:`developing_modules`.