Skip to content

Commit 7eac8ff

Browse files
Merge pull request #925 from Checkmk/devel
Release 6.3.1
2 parents b11fb7a + f4836e7 commit 7eac8ff

File tree

24 files changed

+194
-55
lines changed

24 files changed

+194
-55
lines changed

SUPPORT.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,4 @@ Collection Version | Checkmk Versions | Ansible Versions | Remarks
7777
6.2.2 | 2.2.0p45, 2.3.0p36, 2.4.0p10 | 2.16, 2.17, 2.18 | None
7878
6.2.3 | 2.2.0p46, 2.3.0p38, 2.4.0p13 | 2.17, 2.18, 2.19 | None
7979
6.3.0 | 2.2.0p47, 2.3.0p40, 2.4.0p15 | 2.17, 2.18, 2.19 | None
80+
6.3.1 | 2.2.0p47, 2.3.0p40, 2.4.0p15 | 2.17, 2.18, 2.19 | None
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bugfixes:
2+
- Inventory plugin - Update CheckMKLookupAPI arguments in Inventory.

changelogs/fragments/bugfixes.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bugfixes:
2+
- Downtime module - Bug fix documentation example, where the time stamps were not quoted correctly.
3+
- All roles - Update edition name mapping to compensate future naming changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
release_summary: "Bugfix release."

galaxy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: general
1010

1111
# The version of the collection. Must be compatible with semantic versioning
1212

13-
version: 6.3.0
13+
version: 6.3.1
1414

1515
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1616
readme: README.md
@@ -62,7 +62,7 @@ homepage: https://github.com/Checkmk/ansible-collection-checkmk.general
6262
# The URL to the collection issue tracker
6363
issues: https://github.com/Checkmk/ansible-collection-checkmk.general/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
6464

65-
# build_ignore:
66-
# - '*cloud-config-aws.ini'
67-
# - '*cloud-config-aws.yml'
68-
# - 'changelogs/.plugin-cache.yaml'
65+
build_ignore:
66+
- misc/
67+
- scripts/
68+
- tests/

plugins/inventory/checkmk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def parse(self, inventory, loader, path, cache=False):
154154

155155
api = CheckMKLookupAPI(
156156
site_url=self.get_option("server_url") + "/" + self.get_option("site"),
157-
user=self.get_option("automation_user"),
158-
secret=self.get_option("automation_secret"),
157+
automation_user=self.get_option("automation_user"),
158+
automation_secret=self.get_option("automation_secret"),
159159
validate_certs=self.get_option("validate_certs"),
160160
)
161161

plugins/modules/downtime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@
111111
automation_user: "{{ checkmk_var_automation_user }}"
112112
automation_secret: "{{ checkmk_var_automation_secret }}"
113113
host_name: my_host
114-
start_time: 2022-03-24T20:39:28Z
115-
end_time: 2022-03-24T20:40:28Z
114+
start_time: "2022-03-24T20:39:28Z"
115+
end_time: "2022-03-24T20:40:28Z"
116116
state: "present"
117117
duration: 0
118118
service_descriptions:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "checkmk_ansible_collection"
3-
version = "6.3.0"
3+
version = "6.3.1"
44
requires-python = ">=3.11"
55
dependencies = [
66
"ansible-core==2.19.4",

roles/agent/molecule/2.2.0/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ scenario:
4848
- destroy
4949
- syntax
5050
- create
51-
- prepare
51+
# - prepare
5252
- converge
5353
# - idempotence # disable for now, as we have non-idempotent tasks
5454
# - side_effect

roles/agent/molecule/2.3.0/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ scenario:
4848
- destroy
4949
- syntax
5050
- create
51-
- prepare
51+
# - prepare
5252
- converge
5353
# - idempotence # disable for now, as we have non-idempotent tasks
5454
# - side_effect

0 commit comments

Comments
 (0)