Skip to content

Commit d7414da

Browse files
committed
upload version 1.0.1
1 parent 804a32a commit d7414da

File tree

95 files changed

+104
-125
lines changed

Some content is hidden

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

95 files changed

+104
-125
lines changed

galaxy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: check_point
99
name: mgmt
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 1.0.0
12+
version: 1.0.1
1313

1414
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515
readme: README.md
@@ -23,7 +23,7 @@ authors:
2323
### OPTIONAL but strongly recommended
2424

2525
# A short summary description of the collection
26-
description: check_point collection for the management server
26+
description: Check Point collection for the Management Server
2727

2828
# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
2929
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
@@ -45,13 +45,13 @@ tags: []
4545
dependencies: {}
4646

4747
# The URL of the originating SCM repository
48-
repository: http://example.com/repository
48+
repository: https://github.com/CheckPointSW/CheckPointAnsibleMgmtCollection
4949

5050
# The URL to any online docs
51-
documentation: http://docs.example.com
51+
documentation: https://docs.ansible.com/ansible/latest/modules/list_of_network_modules.html#check-point
5252

5353
# The URL to the homepage of the collection/project
54-
homepage: http://example.com
54+
homepage: https://sc1.checkpoint.com/documents/latest/APIs/index.html#introduction~v1.5%20
5555

5656
# The URL to the collection issue tracker
5757
issues: http://example.com/issue/tracker

plugins/README.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

plugins/doc_fragments/checkpoint_commands.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# Copyright: (c) 2019, Or Soffer <orso@checkpoint.com>
44
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
55

6+
from __future__ import (absolute_import, division, print_function)
7+
__metaclass__ = type
8+
69

710
class ModuleDocFragment(object):
811

plugins/doc_fragments/checkpoint_objects.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# Copyright: (c) 2019, Or Soffer <orso@checkpoint.com>
44
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
55

6+
from __future__ import (absolute_import, division, print_function)
7+
__metaclass__ = type
8+
69

710
class ModuleDocFragment(object):
811

plugins/module_utils/checkpoint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#
2828

2929
from __future__ import (absolute_import, division, print_function)
30+
__metaclass__ = type
3031

3132
import time
3233

plugins/modules/cp_mgmt_access_layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
description:
103103
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
104104
type: bool
105-
extends_documentation_fragment: check_point.mgmt.plugins.doc_fragments.checkpoint_objects
105+
extends_documentation_fragment: check_point.mgmt.checkpoint_objects
106106
"""
107107

108108
EXAMPLES = """

plugins/modules/cp_mgmt_access_layer_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
- Sorts results by the given field in descending order.
7575
type: str
7676
choices: ['name']
77-
extends_documentation_fragment: check_point.mgmt.plugins.doc_fragments.checkpoint_facts
77+
extends_documentation_fragment: check_point.mgmt.checkpoint_facts
7878
"""
7979

8080
EXAMPLES = """

plugins/modules/cp_mgmt_access_role.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
description:
112112
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
113113
type: bool
114-
extends_documentation_fragment: check_point.mgmt.plugins.doc_fragments.checkpoint_objects
114+
extends_documentation_fragment: check_point.mgmt.checkpoint_objects
115115
"""
116116

117117
EXAMPLES = """

plugins/modules/cp_mgmt_access_role_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
- Sorts results by the given field in descending order.
7575
type: str
7676
choices: ['name']
77-
extends_documentation_fragment: check_point.mgmt.plugins.doc_fragments.checkpoint_facts
77+
extends_documentation_fragment: check_point.mgmt.checkpoint_facts
7878
"""
7979

8080
EXAMPLES = """

plugins/modules/cp_mgmt_access_rule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238
description:
239239
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
240240
type: bool
241-
extends_documentation_fragment: check_point.mgmt.plugins.doc_fragments.checkpoint_objects
241+
extends_documentation_fragment: check_point.mgmt.checkpoint_objects
242242
"""
243243

244244
EXAMPLES = """

0 commit comments

Comments
 (0)