1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Updating docs

This commit is contained in:
Chris Hoffman 2013-02-28 20:32:44 -05:00
parent bd9c64e014
commit b1478fdab7

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2013, Matt Cordial <matt.cordial@gmail.com> # (c) 2013, Chatham Financial <oss@chathamfinancial.com>
# #
# This file is part of Ansible # This file is part of Ansible
# #
@ -25,6 +25,8 @@ module: rabbitmq_vhost
short_description: Manage the state of a virtual host in RabbitMQ 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
author: Chris Hoffman
options: options:
name: name:
description: description:
@ -46,7 +48,6 @@ options:
examples: examples:
- code: 'rabbitmq_vhost: name=/test state=present' - code: 'rabbitmq_vhost: name=/test state=present'
description: Ensure that the vhost /test exists. description: Ensure that the vhost /test exists.
author: Matt Cordial
''' '''
class RabbitMqVhost(object): class RabbitMqVhost(object):