adds license details to dev guide pages (#45574)

* adds license details to dev guide pages

* fixes capitalization error
This commit is contained in:
Alicia Cozine 2018-09-12 15:10:38 -05:00 committed by Sam Doran
parent e266a24263
commit 6e68d77f6d
2 changed files with 3 additions and 1 deletions

View file

@ -11,6 +11,8 @@ Ansible provides a number of module utilities that provide helper functions that
The following is a list of ``module_utils`` files and a general description. The module utility source code lives in the ``./lib/ansible/module_utils`` directory under your main Ansible path - for more details on any specific module utility, please see the source code.
.. include:: shared_snippets/licensing.txt
- api.py - Adds shared support for generic API modules.
- azure_rm_common.py - Definitions and utilities for Microsoft Azure Resource Manager template deployments.
- basic.py - General definitions and helper utilities for Ansible modules.

View file

@ -17,7 +17,7 @@ To contribute a module to Ansible, you must:
* support Python 2.7 and Python 3.5 - if your module cannot support Python 2.7, explain the required minimum Python version and rationale in the requirements section in ``DOCUMENTATION``
* use proper :ref:`Python 3 syntax <developing_python_3>`
* follow `PEP 8 <https://www.python.org/dev/peps/pep-0008/>`_ Python style conventions - see :ref:`testing_pep8` for more information
* license your module with GPL 3
* license your module under the GPL license (GPLv3 or later)
* conform to Ansible's :ref:`formatting and documentation <developing_modules_documenting>` standards
* include comprehensive :ref:`tests <developing_testing>` for your module
* minimize module dependencies