Skip to content

Commit

Permalink
Merge pull request #6 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 96a0a25 + e4ff4b1 commit 14b2a66
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 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.
13 changes: 5 additions & 8 deletions package
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,23 @@
'win_adsync_connector.py',
],
'agents': [
'bakery/win_adsync.py',
'windows/plugins/win_adsync.ps1',
],
'checkman': [
'win_adsync_scheduler',
'win_adsync_connector',
],
'checks': [],
'doc': [],
'inventory': [],
'notifications': [],
'pnp-templates': [],
'lib': [
'python3/cmk/base/cee/plugins/bakery/win_adsync.py',
],
'web': [
'plugins/wato/check_parameters_win_adsync.py',
'plugins/wato/agent_bakery_win_adsync.py',
]},
'name': 'win_adsync',
'title': u'Check for Azure AD Connect Sync Service',
'version': '2.1.1',
'version.min_required': '2.0.0',
'version': '2.2.0',
'version.min_required': '2.2.0',
'version.packaged': '2.2.0',
'version.usable_until': '2.3.0'
}

0 comments on commit 14b2a66

Please sign in to comment.