We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ddfca commit df49f52Copy full SHA for df49f52
info
@@ -8,7 +8,7 @@
8
'name': 'proxmox_bs',
9
'num_files': 4,
10
'title': 'Proxmox Backup Server',
11
- 'version': '0.3.1',
+ 'version': '0.3.2',
12
'version.min_required': '2.0.0',
13
'version.packaged': '2.0.0p3',
14
'version.usable_until': None}
lib/check_mk/base/cee/plugins/bakery/proxmox_bs.py
@@ -15,7 +15,11 @@
15
16
def get_proxmox_bs_files(conf: Dict[str, Any]) -> FileGenerator:
17
if conf != None:
18
- yield Plugin(base_os=OS.LINUX, source=Path("proxmox_bs"))
+ yield Plugin(
19
+ base_os=OS.LINUX,
20
+ source=Path("proxmox_bs"),
21
+ interval=3600,
22
+ )
23
yield PluginConfig(
24
base_os=OS.LINUX,
25
lines=[
0 commit comments