Licenses: Updated the list of licenses and added a PDF containing all license texts
[check_mk.git] / .werks / 7217
blob732fe11c7233dc2356ecf90109fe220e0f9b50f9
1 Title: HW/SW-Inventory: Execution order of plugins
2 Level: 1
3 Component: checks
4 Compatible: compat
5 Edition: cre
6 Version: 1.6.0i1
7 Date: 1552656409
8 Class: fix
10 The order in which the HW/SW inventory plugins are executed is now deterministic.
11 Previously dependencies between inventory plugins could lead to missing data if
12 the plugins happend to be executed in the wrong order.
14 Plugins are now executed in alphabetical order by default. You can force a plugin
15 to be executed after another plugin by setting the <tt>depends_on</tt> key in
16 the inventory info variable <tt>inv_info</tt>. For instance writing
17 <tt>inv_info['plugin_a'] = {
18     ...
19     'depends_on' = ['plugin_b'],
20 }</tt>
21 will enforce "plugin_b" to be executed before "plugin_a".