Skip to content

Commit

Permalink
6.2.1 (#144)
Browse files Browse the repository at this point in the history
* interface module

* add param for returned value

* readme
  • Loading branch information
chkp-edenbr authored Aug 28, 2024
1 parent dd23e7e commit 96fb120
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Check_Point.Mgmt Release Notes

.. contents:: Topics

v6.2.1
======

Release Summary
---------------

This is release 6.2.1 of ``check_point.mgmt``, released on 2024-08-28.


v6.2.0
======

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ Example playbook:
```
Note - If you want to run against Ansible version 2.9 instead of the collection, just replace `check_point.mgmt.cp_mgmt_network` with `cp_mgmt_network`

### Testing:
This collection is tested with the most current Ansible releases. Ansible versions from 2.15.0 and above are supported.

### License Information:
Apache-2.0 license

### Notes:
1. Because this Ansible module is controlling the management server remotely via the web API,
the Ansible server needs to have access to the Check Point API server.
Expand All @@ -70,7 +76,7 @@ Note - If you want to run against Ansible version 2.9 instead of the collection,
2. Ansible has a feature called "Check Mode" that enables you to test the
changes without actually changing anything.
3. The login and logout happens automatically.
4. If you want to login to a specific domain, in the playbook above in the `vars`secion change the domain name to
4. If you want to login to a specific domain, in the playbook above in the `vars`section change the domain name to
`ansible_checkpoint_domain`
5. There are two ways to publish changes:
a. Set the `auto_publish_session` to `true` as displayed in the example playbook above.
Expand Down
7 changes: 7 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1259,3 +1259,10 @@ releases:
name: cp_mgmt_interface_facts
namespace: ''
release_date: '2024-08-27'
6.2.1:
changes:
release_summary: This is release 6.2.1 of ``check_point.mgmt``, released on
2024-08-28.
fragments:
- 6.2.1.yml
release_date: '2024-08-28'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: check_point
name: mgmt

# The version of the collection. Must be compatible with semantic versioning
version: 6.2.0
version: 6.2.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
1 change: 1 addition & 0 deletions plugins/module_utils/checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,6 +1088,7 @@ def get_number_and_section_from_position(
section_name,
above_relative_position,
pos_before_relative_empty_section,
prev_section
) = get_number_and_section_from_relative_position(
payload,
connection,
Expand Down

0 comments on commit 96fb120

Please sign in to comment.