Skip to content

Commit 19b8ffe

Browse files
authored
Use SPDX-License-Identifier, mention all licenses in galaxy.yml, add missing license file (#1398)
Use SPDX-License-Identifier, mention all licenses in galaxy.yml, add missing license file SUMMARY Implements ansible-community/community-topics#112 (comment). Also adds a missing license file for the BSD-2-Clause licensed vmware_spbm and vmware_rest_client module utils. ISSUE TYPE Docs Pull Request Feature Pull Request COMPONENT NAME collection ADDITIONAL INFORMATION I've also tried to unify the format. For example, sometimes there was an empty comment before the copyright (# ) and sometimes there was an empty line without a comment. cc @felixfontein Reviewed-by: Felix Fontein <felix@fontein.de>
1 parent 4df54bc commit 19b8ffe

File tree

179 files changed

+442
-263
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+442
-263
lines changed

LICENSES/BSD-2-Clause.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
2+
3+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
4+
5+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
6+
7+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8+

galaxy.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ readme: README.md
1010
authors:
1111
- Ansible (https://github.com/ansible)
1212
description:
13-
license_file: LICENSE
13+
license:
14+
- GPL-3.0-or-later
15+
- BSD-2-Clause
1416
tags:
1517
- cloud
1618
- vmware

plugins/connection/vmware_tools.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright: (c) 2018, Deric Crago <deric.crago@gmail.com>
22
# Copyright: (c) 2018, Ansible Project
3-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
3+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# SPDX-License-Identifier: GPL-3.0-or-later
45

56
from __future__ import absolute_import, division, print_function
67
__metaclass__ = type

plugins/doc_fragments/vca.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# -*- coding: utf-8 -*-
22

33
# Copyright: (c) 2016, Charles Paul <cpaul@ansible.com>
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
from __future__ import absolute_import, division, print_function
78
__metaclass__ = type

plugins/doc_fragments/vmware.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Copyright: (c) 2016, Charles Paul <cpaul@ansible.com>
44
# Copyright: (c) 2018, Ansible Project
55
# Copyright: (c) 2019, Abhijeet Kasurde <akasurde@redhat.com>
6-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
78

89
from __future__ import absolute_import, division, print_function
910
__metaclass__ = type

plugins/doc_fragments/vmware_rest_client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
# Copyright: (c) 2018, Ansible Project
44
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
67

78
from __future__ import absolute_import, division, print_function
89
__metaclass__ = type

plugins/httpapi/vmware.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Copyright: (c) 2018 Red Hat Inc.
22
# Copyright: (c) 2019, Ansible Project
33
# Copyright: (c) 2019, Abhijeet Kasurde <akasurde@redhat.com>
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
from __future__ import (absolute_import, division, print_function)
78
__metaclass__ = type

plugins/inventory/vmware_host_inventory.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
#
21
# Copyright: (c) 2018, Ansible Project
32
# Copyright: (c) 2020, dacrystal
43
# Copyright: (c) 2021, Abhijeet Kasurde <akasurde@redhat.com>
5-
#
6-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
76

87
from __future__ import absolute_import, division, print_function
98

plugins/inventory/vmware_vm_inventory.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
#
21
# Copyright: (c) 2018, Ansible Project
32
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
43
# Copyright: (c) 2020, dacrystal
5-
#
6-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
76

87
from __future__ import (absolute_import, division, print_function)
98
__metaclass__ = type

plugins/module_utils/vca.py

+2-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
1-
#
2-
# This file is part of Ansible
3-
#
4-
# Ansible is free software: you can redistribute it and/or modify
5-
# it under the terms of the GNU General Public License as published by
6-
# the Free Software Foundation, either version 3 of the License, or
7-
# (at your option) any later version.
8-
#
9-
# Ansible is distributed in the hope that it will be useful,
10-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
# GNU General Public License for more details.
13-
#
14-
# You should have received a copy of the GNU General Public License
15-
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
1+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
2+
# SPDX-License-Identifier: GPL-3.0-or-later
163

174
from __future__ import absolute_import, division, print_function
185
__metaclass__ = type

plugins/module_utils/version.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# -*- coding: utf-8 -*-
22

33
# Copyright: (c) 2021, Felix Fontein <felix@fontein.de>
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
"""Provide version object to compare version numbers."""
78

plugins/module_utils/vm_device_helper.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -*- coding: utf-8 -*-
2-
#
3-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2+
3+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# SPDX-License-Identifier: GPL-3.0-or-later
45

56
from __future__ import absolute_import, division, print_function
67
__metaclass__ = type

plugins/module_utils/vmware.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# -*- coding: utf-8 -*-
2+
23
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
34
# Copyright: (c) 2018, Ansible Project
45
# Copyright: (c) 2018, James E. King III (@jeking3) <jking@apache.org>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
68

79
from __future__ import absolute_import, division, print_function
810
__metaclass__ = type

plugins/module_utils/vmware_rest_client.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
23
# Copyright: (c) 2018, Ansible Project
34
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
4-
# Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)
5+
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
6+
# SPDX-License-Identifier: BSD-2-Clause
57

68
from __future__ import absolute_import, division, print_function
79
__metaclass__ = type

plugins/module_utils/vmware_spbm.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# -*- coding: utf-8 -*-
22

33
# Copyright: (c) 2019, Ansible Project
4-
# Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)
4+
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
5+
# SPDX-License-Identifier: BSD-2-Clause
56

67
from __future__ import absolute_import, division, print_function
78
__metaclass__ = type

plugins/modules/vca_fw.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/python
22

33
# Copyright: (c) 2015, VMware, Inc. All Rights Reserved.
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
from __future__ import absolute_import, division, print_function
78
__metaclass__ = type

plugins/modules/vca_nat.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/python
22

33
# Copyright: (c) 2015, VMware, Inc. All Rights Reserved.
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
from __future__ import absolute_import, division, print_function
78
__metaclass__ = type

plugins/modules/vca_vapp.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/python
2+
23
# Copyright: (c) 2015, Ansible, Inc.
3-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
46

57
from __future__ import absolute_import, division, print_function
68
__metaclass__ = type

plugins/modules/vcenter_domain_user_group_info.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# -*- coding: utf-8 -*-
33

44
# Copyright: (c) 2020, sky-joker
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
67

78
from __future__ import absolute_import, division, print_function
89
__metaclass__ = type

plugins/modules/vcenter_extension.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# -*- coding: utf-8 -*-
33

44
# Copyright: (c) 2018, Michael Tipton <mike () ibeta.org>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
67

78
from __future__ import absolute_import, division, print_function
89
__metaclass__ = type

plugins/modules/vcenter_extension_info.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# -*- coding: utf-8 -*-
33

44
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
67

78
from __future__ import absolute_import, division, print_function
89
__metaclass__ = type

plugins/modules/vcenter_folder.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# -*- coding: utf-8 -*-
33

44
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
67

78
from __future__ import absolute_import, division, print_function
89
__metaclass__ = type

plugins/modules/vcenter_license.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/python
22

33
# Copyright: (c) 2017, Dag Wieers (@dagwieers) <dag@wieers.com>
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
4+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# SPDX-License-Identifier: GPL-3.0-or-later
56

67
from __future__ import absolute_import, division, print_function
78
__metaclass__ = type

plugins/modules/vcenter_standard_key_provider.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3+
34
# Copyright: (c) 2021, Ansible Project
45
# Copyright: (c) 2021, VMware, Inc. All Rights Reserved
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
68

79
from __future__ import absolute_import, division, print_function
810
__metaclass__ = type

plugins/modules/vmware_about_info.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3-
#
3+
44
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
5-
#
6-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
77

88
from __future__ import absolute_import, division, print_function
99
__metaclass__ = type

plugins/modules/vmware_category.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2018, Ansible Project
55
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_category_info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2018, Ansible Project
55
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_cfg_backup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# Copyright: (c) 2017, IBM Corp
55
# Author(s): Andreas Nafpliotis <nafpliot@de.ibm.com>
6-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
78

89
from __future__ import absolute_import, division, print_function
910
__metaclass__ = type

plugins/modules/vmware_cluster.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
55
# Copyright: (c) 2018, Ansible Project
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_cluster_dpm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright: (c) 2022, Swisscom (Schweiz) AG
55
# Author(s): Olivia Luetolf <olivia.luetolf@swisscom.com>
66
# Copyright: (c) 2018, Ansible Project
7-
#
8-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
8+
# SPDX-License-Identifier: GPL-3.0-or-later
99

1010
from __future__ import absolute_import, division, print_function
1111
__metaclass__ = type

plugins/modules/vmware_cluster_drs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
55
# Copyright: (c) 2018, Ansible Project
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_cluster_ha.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
55
# Copyright: (c) 2018, Ansible Project
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010

plugins/modules/vmware_cluster_info.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3+
34
# Copyright: (c) 2018, Ansible Project
45
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
5-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
68

79
from __future__ import absolute_import, division, print_function
810
__metaclass__ = type

plugins/modules/vmware_cluster_vcls.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
55
# Copyright: (c) 2018, Ansible Project
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_cluster_vsan.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
# Copyright: (c) 2015, Joseph Callen <jcallen () csc.com>
55
# Copyright: (c) 2018, Ansible Project
6-
#
7-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
7+
# SPDX-License-Identifier: GPL-3.0-or-later
88

99
from __future__ import absolute_import, division, print_function
1010
__metaclass__ = type

plugins/modules/vmware_content_deploy_ovf_template.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3+
34
# Copyright: (c) 2020, Lev Goncharov <lev@goncharov.xyz>
4-
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
5+
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
6+
# SPDX-License-Identifier: GPL-3.0-or-later
57

68
from __future__ import absolute_import, division, print_function
79
__metaclass__ = type

0 commit comments

Comments
 (0)