Skip to content

Commit

Permalink
Merge pull request #18 from jiuka/cmk22_bakery
Browse files Browse the repository at this point in the history
Update bakery plugin for Checkmk 2.2.0
  • Loading branch information
jiuka authored Jul 1, 2023
2 parents e8a06a3 + 28cd6e8 commit 7df931e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
7 changes: 5 additions & 2 deletions .devcontainer/symlink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ for DIR in 'agents' 'checkman' 'checks' 'doc' 'inventory' 'notifications' 'pnp-t
ln -sv $WORKSPACE/$DIR $OMD_ROOT/local/share/check_mk/$DIR
done;

rm -rfv $OMD_ROOT/local/lib/check_mk/base/plugins/agent_based
ln -sv $WORKSPACE/agent_based $OMD_ROOT/local/lib/check_mk/base/plugins/agent_based
rm -rfv $OMD_ROOT/local/lib/python3/cmk/base/plugins/agent_based
ln -sv $WORKSPACE/agent_based $OMD_ROOT/local/lib/python3/cmk/base/plugins/agent_based

mkdir -p $OMD_ROOT/local/lib/python3/cmk/base/cee/plugins
ln -sv $WORKSPACE/bakery $OMD_ROOT/local/lib/python3/cmk/base/cee/plugins/bakery

rm -rfv $OMD_ROOT/local/lib/nagios/plugins
ln -sv $WORKSPACE/nagios_plugins $OMD_ROOT/local/lib/nagios/plugins
File renamed without changes.
15 changes: 6 additions & 9 deletions package
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@
'files': {
'agent_based': ['veeam_o365jobs.py', 'veeam_o365licenses.py'],
'agents': [
'bakery/veeam_o365',
'windows/plugins/veeam_o365_status.ps1',
],
'checkman': ['veeam_o365jobs', 'veeam_o365licenses'],
'checks': [],
'doc': [],
'inventory': [],
'notifications': [],
'pnp-templates': [],
'lib': [
'python3/cmk/base/cee/plugins/bakery/veeam_o365.py',
],
'web': [
'plugins/metrics/veeam_o365jobs.py',
'plugins/metrics/veeam_o365licenses.py',
Expand All @@ -23,8 +20,8 @@
]},
'name': 'veeam_o365',
'title': u'Veeam for Office 365 Checks',
'version': '2.5.1',
'version.min_required': '2.0.0',
'version.packaged': '2.0.0',
'version': '2.6.0',
'version.min_required': '2.2.0',
'version.packaged': '2.2.0',
'version.usable_until': '2.3.0'
}

0 comments on commit 7df931e

Please sign in to comment.