BOTMETA: Move rabbitmq modules to own directory (#46064)

Moving rabbitmq modules to own directory makes it possible to automatically include $team_rabbitmq for new modules.
This commit is contained in:
Dag Wieers 2018-10-30 20:54:38 +01:00 committed by Alicia Cozine
parent 77d73808e6
commit b7e77c4274
11 changed files with 28 additions and 39 deletions

11
.github/BOTMETA.yml vendored
View file

@ -179,16 +179,7 @@ files:
$modules/identity/keycloak/: eikef $modules/identity/keycloak/: eikef
$modules/inventory/add_host.py: $team_ansible $modules/inventory/add_host.py: $team_ansible
$modules/inventory/group_by.py: $team_ansible $modules/inventory/group_by.py: $team_ansible
$modules/messaging/rabbitmq_binding.py: $team_rabbitmq $modules/messaging/rabbitmq/: $team_rabbitmq
$modules/messaging/rabbitmq_exchange.py: $team_rabbitmq
$modules/messaging/rabbitmq_parameter.py: $team_rabbitmq
$modules/messaging/rabbitmq_plugin.py: $team_rabbitmq
$modules/messaging/rabbitmq_policy.py: retr0h
$modules/messaging/rabbitmq_queue.py: $team_rabbitmq
$modules/messaging/rabbitmq_user.py: $team_rabbitmq
$modules/messaging/rabbitmq_vhost.py:
ignored: choffman
maintainers: $team_rabbitmq
$modules/monitoring/datadog_event.py: $modules/monitoring/datadog_event.py:
ignored: arturaz ignored: arturaz
$modules/monitoring/logentries.py: $modules/monitoring/logentries.py:

View file

@ -1,8 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (c) 2015, Manuel Sousa <manuel.sousa@gmail.com> # Copyright: (c) 2015, Manuel Sousa <manuel.sousa@gmail.com>
#
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -17,10 +16,10 @@ ANSIBLE_METADATA = {
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_binding module: rabbitmq_binding
author: "Manuel Sousa (@manuel-sousa)" author: Manuel Sousa (@manuel-sousa)
version_added: "2.0" version_added: "2.0"
short_description: This module manages rabbitMQ bindings short_description: Manage rabbitMQ bindings
description: description:
- This module uses rabbitMQ REST APIs to create / delete bindings. - This module uses rabbitMQ REST APIs to create / delete bindings.
requirements: [ "requests >= 1.0.0" ] requirements: [ "requests >= 1.0.0" ]

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2015, Manuel Sousa <manuel.sousa@gmail.com> # Copyright: (c) 2015, Manuel Sousa <manuel.sousa@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -16,10 +16,10 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_exchange module: rabbitmq_exchange
author: "Manuel Sousa (@manuel-sousa)" author: Manuel Sousa (@manuel-sousa)
version_added: "2.0" version_added: "2.0"
short_description: This module manages rabbitMQ exchanges short_description: Manage rabbitMQ exchanges
description: description:
- This module uses rabbitMQ Rest API to create/delete exchanges - This module uses rabbitMQ Rest API to create/delete exchanges
requirements: [ "requests >= 1.0.0" ] requirements: [ "requests >= 1.0.0" ]

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Chatham Financial <oss@chathamfinancial.com> # Copyright: (c) 2013, Chatham Financial <oss@chathamfinancial.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -16,11 +16,11 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_parameter module: rabbitmq_parameter
short_description: Adds or removes parameters to RabbitMQ short_description: Manage RabbitMQ parameters
description: description:
- Manage dynamic, cluster-wide parameters for RabbitMQ - Manage dynamic, cluster-wide parameters for RabbitMQ
version_added: "1.1" version_added: "1.1"
author: '"Chris Hoffman (@chrishoffman)"' author: Chris Hoffman (@chrishoffman)
options: options:
component: component:
description: description:

View file

@ -1,8 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright: (c) 2013, Chatham Financial <oss@chathamfinancial.com> # Copyright: (c) 2013, Chatham Financial <oss@chathamfinancial.com>
# Copyright: (c) 2018, Ansible Project
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, John Dewey <john@dewey.ws> # Copyright: (c) 2013, John Dewey <john@dewey.ws>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -16,11 +16,11 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_policy module: rabbitmq_policy
short_description: Manage the state of policies in RabbitMQ. short_description: Manage the state of policies in RabbitMQ
description: description:
- Manage the state of a policy in RabbitMQ. - Manage the state of a policy in RabbitMQ.
version_added: "1.5" version_added: "1.5"
author: "John Dewey (@retr0h)" author: John Dewey (@retr0h)
options: options:
name: name:
description: description:

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2015, Manuel Sousa <manuel.sousa@gmail.com> # Copyright: (c) 2015, Manuel Sousa <manuel.sousa@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -16,10 +16,10 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_queue module: rabbitmq_queue
author: "Manuel Sousa (@manuel-sousa)" author: Manuel Sousa (@manuel-sousa)
version_added: "2.0" version_added: "2.0"
short_description: This module manages rabbitMQ queues short_description: Manage rabbitMQ queues
description: description:
- This module uses rabbitMQ Rest API to create/delete queues - This module uses rabbitMQ Rest API to create/delete queues
requirements: [ "requests >= 1.0.0" ] requirements: [ "requests >= 1.0.0" ]

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Chatham Financial <oss@chathamfinancial.com> # Copyright: (c) 2013, Chatham Financial <oss@chathamfinancial.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -16,11 +16,11 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: rabbitmq_user module: rabbitmq_user
short_description: Adds or removes users to RabbitMQ short_description: Manage RabbitMQ users
description: description:
- Add or remove users to RabbitMQ and assign permissions - Add or remove users to RabbitMQ and assign permissions
version_added: "1.1" version_added: "1.1"
author: '"Chris Hoffman (@chrishoffman)"' author: Chris Hoffman (@chrishoffman)
options: options:
user: user:
description: description:

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Chatham Financial <oss@chathamfinancial.com> # Copyright: (c) 2013, Chatham Financial <oss@chathamfinancial.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
@ -20,7 +20,7 @@ short_description: Manage the state of a virtual host in RabbitMQ
description: description:
- Manage the state of a virtual host in RabbitMQ - Manage the state of a virtual host in RabbitMQ
version_added: "1.1" version_added: "1.1"
author: '"Chris Hoffman (@choffman)"' author: Chris Hoffman (@chrishoffman)
options: options:
name: name:
description: description:

View file

@ -575,12 +575,12 @@ lib/ansible/modules/identity/keycloak/keycloak_client.py E324
lib/ansible/modules/identity/keycloak/keycloak_client.py E325 lib/ansible/modules/identity/keycloak/keycloak_client.py E325
lib/ansible/modules/identity/keycloak/keycloak_clienttemplate.py E324 lib/ansible/modules/identity/keycloak/keycloak_clienttemplate.py E324
lib/ansible/modules/identity/keycloak/keycloak_clienttemplate.py E325 lib/ansible/modules/identity/keycloak/keycloak_clienttemplate.py E325
lib/ansible/modules/messaging/rabbitmq_binding.py E324 lib/ansible/modules/messaging/rabbitmq/rabbitmq_binding.py E324
lib/ansible/modules/messaging/rabbitmq_exchange.py E324 lib/ansible/modules/messaging/rabbitmq/rabbitmq_exchange.py E324
lib/ansible/modules/messaging/rabbitmq_exchange.py E326 lib/ansible/modules/messaging/rabbitmq/rabbitmq_exchange.py E326
lib/ansible/modules/messaging/rabbitmq_policy.py E324 lib/ansible/modules/messaging/rabbitmq/rabbitmq_policy.py E324
lib/ansible/modules/messaging/rabbitmq_queue.py E324 lib/ansible/modules/messaging/rabbitmq/rabbitmq_queue.py E324
lib/ansible/modules/messaging/rabbitmq_queue.py E327 lib/ansible/modules/messaging/rabbitmq/rabbitmq_queue.py E327
lib/ansible/modules/monitoring/airbrake_deployment.py E324 lib/ansible/modules/monitoring/airbrake_deployment.py E324
lib/ansible/modules/monitoring/bigpanda.py E322 lib/ansible/modules/monitoring/bigpanda.py E322
lib/ansible/modules/monitoring/bigpanda.py E324 lib/ansible/modules/monitoring/bigpanda.py E324