You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wsus_sync_status isn't compatible with the latest CMK 1.6 beta, so I'm guessing it won't be with the final release:
Failed to load plugin /omd/sites/prod/local/share/check_mk/web/plugins/wato/wsus_sync_status.py: No module named defines
Traceback (most recent call last):
File "/omd/sites/prod/lib/python/cmk/gui/utils.py", line 173, in load_web_plugins
execfile(file_path, globalvars)
File "/omd/sites/prod/local/share/check_mk/web/plugins/wato/wsus_sync_status.py", line 4, in <module>
import cmk.defines as defines
ImportError: No module named defines
I think it's supposed to be cmk.utils.defines now
The text was updated successfully, but these errors were encountered:
i has the same problem and make some changes in two files.
in /omd/sites/prod/local/share/check_mk/web/plugins/wato/wsus_sync_status.py
delete or comment the following line: import cmk.defines as defines
and in /omd/sites/prod/local/share/check_mk/agents/bakery/wsus_sync_status
change the line: shutil.copy2(cmk.paths.local_agents_dir + "/plugins/wsus_sync_status.ps1",
to: shutil.copy2(cmk.utils.paths.local_agents_dir + "/plugins/wsus_sync_status.ps1",
Hi there,
wsus_sync_status isn't compatible with the latest CMK 1.6 beta, so I'm guessing it won't be with the final release:
I think it's supposed to be
cmk.utils.defines
nowThe text was updated successfully, but these errors were encountered: