Fix author in modules (#46068)
Fix a few cases where the author was incomplete or incorrect.
This commit is contained in:
parent
6ddfd912dc
commit
f90fc8a9a2
5 changed files with 17 additions and 12 deletions
|
@ -1,8 +1,10 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# Copyright (c) 2018 Loic BLOT <loic.blot@unix-experience.fr>
|
|
||||||
# This module is sponsored by E.T.A.I. (www.etai.fr)
|
# Copyright: (c) 2018, Loic BLOT (@nerzhul) <loic.blot@unix-experience.fr>
|
||||||
# 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)
|
||||||
|
|
||||||
|
# This module is sponsored by E.T.A.I. (www.etai.fr)
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
'status': ['preview'],
|
'status': ['preview'],
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
@ -15,7 +17,7 @@ description:
|
||||||
- Fetch AWS Storage Gateway facts
|
- Fetch AWS Storage Gateway facts
|
||||||
version_added: "2.6"
|
version_added: "2.6"
|
||||||
requirements: [ boto3 ]
|
requirements: [ boto3 ]
|
||||||
author: "Loic Blot <loic.blot@unix-experience.fr>"
|
author: Loic Blot (@nerzhul) <loic.blot@unix-experience.fr>
|
||||||
options:
|
options:
|
||||||
gather_local_disks:
|
gather_local_disks:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# Copyright (c) 2017 Ansible Project
|
|
||||||
|
# Copyright: (c) 2017, Ansible Project
|
||||||
# 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)
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'status': ['preview'],
|
ANSIBLE_METADATA = {'status': ['preview'],
|
||||||
|
@ -15,7 +16,7 @@ description:
|
||||||
- In case Hook found, but provided parameters are differes, will update existing Hook.
|
- In case Hook found, but provided parameters are differes, will update existing Hook.
|
||||||
- In case state=absent and Hook exists, will delete it.
|
- In case state=absent and Hook exists, will delete it.
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
author: "Igor (Tsigankov) Eyrich (@tsiganenok) <tsiganenok@gmail.com>"
|
author: Igor 'Tsigankov' Eyrich (@tsiganenok) <tsiganenok@gmail.com>
|
||||||
options:
|
options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# Copyright (c) 2017 Ansible Project
|
|
||||||
|
# Copyright: (c) 2017, Ansible Project
|
||||||
# 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)
|
||||||
|
|
||||||
ANSIBLE_METADATA = {
|
ANSIBLE_METADATA = {
|
||||||
|
@ -49,7 +50,7 @@ options:
|
||||||
tags:
|
tags:
|
||||||
description:
|
description:
|
||||||
- A hash/dictionary of tags to add to the new Snapshot; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
- A hash/dictionary of tags to add to the new Snapshot; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
||||||
author: "Deepak Kothandan <deepak.kdy@gmail.com>"
|
author: Deepak Kothandan (@Deepakkothandan) <deepak.kdy@gmail.com>
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- aws
|
- aws
|
||||||
- ec2
|
- ec2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
|
||||||
# Author: Davide Guerri <davide.guerri@hp.com>
|
# Copyright: (c) 2015, Hewlett-Packard Development Company, L.P.
|
||||||
# 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,7 +16,7 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: os_floating_ip
|
module: os_floating_ip
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
author: "Davide Guerri <davide.guerri@hp.com>"
|
author: Davide Guerri (@dguerri) <davide.guerri@hp.com>
|
||||||
short_description: Add/Remove floating IP from an instance
|
short_description: Add/Remove floating IP from an instance
|
||||||
extends_documentation_fragment: openstack
|
extends_documentation_fragment: openstack
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright: Ansible Project
|
|
||||||
|
# Copyright: (c) 2016, Ansible Project
|
||||||
# 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
|
||||||
|
@ -59,7 +60,7 @@ notes:
|
||||||
on the remote host. For Ubuntu-based systems, install the C(postgresql), C(libpq-dev), and C(python-psycopg2) packages on the remote host before
|
on the remote host. For Ubuntu-based systems, install the C(postgresql), C(libpq-dev), and C(python-psycopg2) packages on the remote host before
|
||||||
using this module.
|
using this module.
|
||||||
requirements: [ psycopg2 ]
|
requirements: [ psycopg2 ]
|
||||||
author: "Flavien Chantelot <contact@flavien.io>"
|
author: Flavien Chantelot (@Dorn-) <contact@flavien.io>
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Reference in a new issue