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

Adding doc for the description argument of lxd_profile module

This commit is contained in:
Sofiane Medjkoune 2017-10-07 17:19:46 +02:00 committed by Brian Coca
parent 9c81257ce3
commit ef72eda172
2 changed files with 6 additions and 3 deletions

View file

@ -26,6 +26,10 @@ options:
description: description:
- Name of a profile. - Name of a profile.
required: true required: true
description:
description:
- Description of the profile.
version_added: "2.5"
config: config:
description: description:
- 'The config for the container (e.g. {"limits.memory": "4GB"}). - 'The config for the container (e.g. {"limits.memory": "4GB"}).
@ -147,7 +151,7 @@ EXAMPLES = '''
state: present state: present
''' '''
RETURN=''' RETURN = '''
old_state: old_state:
description: The old state of the profile description: The old state of the profile
returned: success returned: success
@ -356,7 +360,7 @@ def main():
type='str', type='str',
default='{}/.config/lxc/client.crt'.format(os.environ['HOME']) default='{}/.config/lxc/client.crt'.format(os.environ['HOME'])
), ),
trust_password=dict( type='str', no_log=True) trust_password=dict(type='str', no_log=True)
), ),
supports_check_mode=False, supports_check_mode=False,
) )

View file

@ -92,7 +92,6 @@ lib/ansible/modules/cloud/google/gcpubsub.py
lib/ansible/modules/cloud/google/gcspanner.py lib/ansible/modules/cloud/google/gcspanner.py
lib/ansible/modules/cloud/lxc/lxc_container.py lib/ansible/modules/cloud/lxc/lxc_container.py
lib/ansible/modules/cloud/lxd/lxd_container.py lib/ansible/modules/cloud/lxd/lxd_container.py
lib/ansible/modules/cloud/lxd/lxd_profile.py
lib/ansible/modules/cloud/misc/ovirt.py lib/ansible/modules/cloud/misc/ovirt.py
lib/ansible/modules/cloud/misc/rhevm.py lib/ansible/modules/cloud/misc/rhevm.py
lib/ansible/modules/cloud/misc/serverless.py lib/ansible/modules/cloud/misc/serverless.py