Skip to content

Commit

Permalink
Increase version to 2.3.0p17
Browse files Browse the repository at this point in the history
  • Loading branch information
kso512 committed Sep 26, 2024
1 parent 2e3623b commit dfaa60e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ Similar modifications have been made to the `docker.cfg` default file. Here, al

| CheckMK Raw Edition Version | Role Version/Tag |
| --------------------------- | ---------------- |
| 2.3.0p17 | 1.1.5 |
| 2.3.0p16 | 1.1.4 |
| 2.3.0p15 | 1.1.3 |
| 2.3.0p14 | 1.1.2 |
| 2.3.0p13 | 1.1.1 |
| 2.3.0p12 | 1.1.0 |

## Requirements

Expand Down Expand Up @@ -162,7 +162,7 @@ Some of these may be seem redundant but are specified so future users can overri
| checkmk_agent_sudo_src | Filename of the "sudoers.d" file template | `99_cmkagent.j2` |
| checkmk_agent_sudo_validate | Command used to validate the "sudoers.d" file; %s will be filled in with `checkmk_agent_sudo_dest` | `'visudo -cf %s'` |
| checkmk_agent_user | Login name of the CheckMK Agent user | `cmkagent` |
| checkmk_agent_version | Version of CheckMK Agent to install | `2.3.0p16` |
| checkmk_agent_version | Version of CheckMK Agent to install | `2.3.0p17` |
| checkmk_agent_win_config_dest | Full pathname of configuration file | `"{{ checkmk_agent_win_data_folder }}check_mk.user.yml"` |
| checkmk_agent_win_config_optimize | Optimize the Windows agent by dropping some of the slower checks | `true` |
| checkmk_agent_win_config_src | Filename of the configuration file template | `check_mk.user.yml.j2` |
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ checkmk_agent_sudo_owner: root
checkmk_agent_sudo_src: 99_cmkagent.j2
checkmk_agent_sudo_validate: 'visudo -cf %s'
checkmk_agent_user: cmkagent
checkmk_agent_version: 2.3.0p16
checkmk_agent_version: 2.3.0p17
checkmk_agent_win_config_dest: "{{ checkmk_agent_win_data_folder }}check_mk.user.yml"
checkmk_agent_win_config_optimize: true
checkmk_agent_win_config_src: check_mk.user.yml.j2
Expand Down
Binary file modified files/check_mk_agent.msi
Binary file not shown.
4 changes: 3 additions & 1 deletion templates/mk_docker.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ class MKDockerClient(docker.DockerClient):

self._device_map = {}
for device in os.listdir("/sys/block"):
with open("/sys/block/%s/dev" % device) as handle:
dev_path = "/sys/block/%s/dev" % device
if os.path.exists(dev_path):
with open(dev_path) as handle:
self._device_map[handle.read().strip()] = device

return self._device_map
Expand Down

0 comments on commit dfaa60e

Please sign in to comment.