10 lines
336 B
Plaintext
10 lines
336 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8; py-indent-offset: 4 -*-
|
||
|
|
||
|
def bake_nfsiostat(opsys, conf, conf_dir, plugins_dir):
|
||
|
shutil.copy2(cmk.paths.local_agents_dir + "/plugins/mk_nfsiostat", plugins_dir + "/mk_nfsiostat")
|
||
|
|
||
|
bakery_info["mk_nfsiostat"] = {
|
||
|
"bake_function" : bake_nfsiostat,
|
||
|
"os" : [ "linux", ],
|
||
|
}
|