bundlewrap/bundles/smartctl/metadata.py
2022-01-08 23:26:21 +01:00

29 lines
641 B
Python

h = repo.libs.hashable.hashable
defaults = {
'apt': {
'packages': {
'smartmontools': {},
},
},
'grafana_rows': {
'smartctl',
},
'smartctl': {},
'telegraf': {
'config': {
'inputs': {
'exec': {h({
'commands': [
f'sudo /usr/local/share/telegraf/smartctl',
],
'data_format': 'influx',
'interval': '20s',
})},
},
},
},
'sudoers': {
'telegraf': {'/usr/local/share/telegraf/smartctl'},
},
}