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

Make plugins pass validation. (#2414)

This commit is contained in:
Felix Fontein 2021-05-03 13:22:11 +02:00 committed by GitHub
parent 4b0d2dcfe0
commit 6a72c3b338
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = """ DOCUMENTATION = """
become: sudosu name: sudosu
short_description: Run tasks using sudo su - short_description: Run tasks using sudo su -
description: description:
- This become plugins allows your remote/login user to execute commands as another user via the C(sudo) and C(su) utilities combined. - This become plugins allows your remote/login user to execute commands as another user via the C(sudo) and C(su) utilities combined.

View file

@ -4,7 +4,7 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = ''' DOCUMENTATION = '''
callback: loganalytics name: loganalytics
type: aggregate type: aggregate
short_description: Posts task results to Azure Log Analytics short_description: Posts task results to Azure Log Analytics
author: "Cyrus Li (@zhcli) <cyrus1006@gmail.com>" author: "Cyrus Li (@zhcli) <cyrus1006@gmail.com>"

View file

@ -6,7 +6,7 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = r''' DOCUMENTATION = r'''
name: community.general.lxd name: lxd
short_description: Returns Ansible inventory from lxd host short_description: Returns Ansible inventory from lxd host
description: description:
- Get inventory from the lxd. - Get inventory from the lxd.
@ -68,7 +68,7 @@ DOCUMENTATION = r'''
description: description:
- Create groups by the following keywords C(location), C(pattern), C(network_range), C(os), C(release), C(profile), C(vlanid). - Create groups by the following keywords C(location), C(pattern), C(network_range), C(os), C(release), C(profile), C(vlanid).
- See example for syntax. - See example for syntax.
type: json type: dict
''' '''
EXAMPLES = ''' EXAMPLES = '''