Add version_added info + changelog
This commit is contained in:
parent
5b8cdf6ce2
commit
54180817cd
1 changed files with 4 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
DOCUMENTATION = '''
|
||||
---
|
||||
module: apache2_module
|
||||
version_added: 1.6
|
||||
short_description: enables/disables a module of the Apache2 webserver
|
||||
description:
|
||||
- Enables or disables a specified module of the Apache2 webserver.
|
||||
|
@ -91,6 +92,7 @@ def main():
|
|||
if module.params['state'] == 'absent':
|
||||
_disable_module(module)
|
||||
|
||||
# this is magic, see lib/ansible/module.params['common.py
|
||||
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
main()
|
||||
|
||||
|
|
Loading…
Reference in a new issue