mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 23:31:25 -07:00
Windows: Clean up documentation (#36684)
This PR includes: - Further cleanup of BOTMETA.yml - Cleanup of author github handles - Use of proper booleans - One-line license statement - Copyright format statement - Smaller cleanups
This commit is contained in:
parent
4ab96722cf
commit
07e8fb5dbb
81 changed files with 751 additions and 1591 deletions
|
@ -1,12 +1,13 @@
|
|||
#!/usr/bin/python
|
||||
# Copyright (c) 2017 Ansible Project
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: (c) 2017, Ansible Project
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: win_rabbitmq_plugin
|
||||
|
@ -20,8 +21,8 @@ options:
|
|||
names:
|
||||
description:
|
||||
- Comma-separated list of plugin names.
|
||||
required: true
|
||||
aliases: [name]
|
||||
required: yes
|
||||
aliases: [ name ]
|
||||
new_only:
|
||||
description:
|
||||
- Only enable missing plugins.
|
||||
|
@ -31,8 +32,8 @@ options:
|
|||
state:
|
||||
description:
|
||||
- Specify if plugins are to be enabled or disabled.
|
||||
choices: [ disabled, enabled ]
|
||||
default: enabled
|
||||
choices: [enabled, disabled]
|
||||
prefix:
|
||||
description:
|
||||
- Specify a custom install prefix to a Rabbit.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue