ID: 11488
Title: Fix empty page on editing availability display options
Component: Multisite
Level: 1
Class: Bug fix
Version: 2.0.0i2
If the display options on the availability page were edited, the page was empty
after saving the new options.
This resulted from the separation of display and computation options and has
now been fixed.
ID: 11487
Title: Fix tree of folders snapin
Component: Multisite
Level: 1
Class: Bug fix
Version: 2.0.0i2
The links for dashboard views, e.g. "Main Overview" in topic "Overview", were broken.
Such dashboards can now be called correctly from the snapin.
ID: 10316
Title: Add support for Ubuntu 20.10
Component: Linux Distributions
Level: 1
Class: New feature
Version: 2.0.0i2
Added support for Ubuntu 20.10
ID: 11339
Title: check_mk_agent: readdition of postfix_mailq_status
Component: Checks & agents
Level: 1
Class: Bug fix
Version: 2.0.0i2
The refactored check_mk_agent.linux was missing the postfix_mailq_status
section in its output. This change reintroduces the section. The user is
required to bake the agent in order to rollout this change.
ID: 11508
Title: Fix error when editing host configuration
Component: WATO
Level: 1
Class: Bug fix
Version: 2.0.0i2
When editing the CME configuration while having folders with explicit site
configurations, an error like this occured in 2.0.0i1: "FileExistsError ((17,
'File exists'))"
ID: 11507
Title: Tags: Fix broken links in "confirm modification" message
Component: Multisite
Level: 1
Class: Bug fix
Version: 2.0.0i2
When editing a tag group a confirm dialog may occur which contained
some broken links to affected objects.
ID: 11505
Title: Active checks: Failed check caused by missing arguments
Component: Checks & agents
Level: 1
Class: Bug fix
Version: 2.0.0i2
In Checkmk 2.0.0i1 several active checks failed with different error messages,
because the command lines that were built to execute the active checks were
missing required arguments.
For example the SMTP checks failed when a custom network port was configured
with a message like: "check_smtp: Port must be a positive integer". Since this
was an error in a generic place, this affected multiple active checks.
ID: 11464
Title: Windows agent updater plugin is delivered as Python script
Component: agents
Level: 2
Class: New feature
Version: 2.0.0i1
Since this release Windows Agent update plugin is delivered as a python file
with name <tt>cmk_update_agent.checkmk.py</tt>
This feature has next advantages:
<ul>
<li>eliminates false virus alarms for the plugin</li>
<li>improves stability and performance</li>
<li>speeds up development</li>
<li>improves diagnostic</li>
</ul>
To use the plugin from the command line you may use provide next methods:
1. Use Windows agent:
C+:
cd "%ProgramFiles(x86)%\checkmk\service"
check_mk_agent updater [params]
C-:
2. Use provided with Windows agent Python module:
C+:
cd "%ProgramData%\checkmk\agent\plugins"
..\modules\Python-3.8\.venv\Scripts\python cmk_update_agent.checkmk.py [params]
C-:
In both cases <tt>params</tt> means parametres of the Windows agent updater plugin.
You could even execute the Agent updater with another Python installation, but it
is not recommended, because you would have to ensure that all module dependencies
are installed in your environment. We have solved this problem for you by providing
a standard Python environment for Windows, so it should be used.