diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index 73729da4d6a..d868156ef20 100755 --- a/hacking/module_formatter.py +++ b/hacking/module_formatter.py @@ -383,8 +383,9 @@ def process_category(category, categories, options, env, template, outputname): category_file.write("""\n\n .. note:: - - %s: This marks a module as deprecated, kept for backwards compatibility but use is discouraged - - %s: Denotes that this module is not part of core, it can be found in the extras or some other external repo + - %s: This marks a module as deprecated, which means a module is kept for backwards compatibility but usage is discouraged. The module documentation details page may explain more about this rationale. + - %s: This marks a module as 'extras', which means it ships with ansible but may be a newer module and possibly (but not neccessarily) less activity maintained than 'core' modules. + - Tickets filed on modules are filed to different repos than those on the main open source project. Core module tickets should be filed at `ansible/ansible-modules-core on GitHub `_, extras tickets to `ansible/ansible-modules-extras on GitHub `_ """ % (DEPRECATED, NOTCORE)) category_file.close()