hassio-addons/upsmon/config.json

30 lines
530 B
JSON
Raw Normal View History

2018-11-08 20:56:10 +00:00
{
"name": "Network UPS Tools - netclient",
2018-11-08 21:16:24 +00:00
"version": "0.1.2",
2018-11-08 20:56:10 +00:00
"slug": "upsmon",
"description": "Connect to a remote NUT server",
"startup": "before",
"boot": "auto",
"options": {
2018-11-08 21:16:24 +00:00
"credentials": {
"user": "monuser",
"pass": "secret"
},
"ups": {
"upsname": "ups",
"host": "IPADDR"
},
2018-11-08 20:56:10 +00:00
"delay": "5"
},
"schema": {
2018-11-08 21:16:24 +00:00
"credentials": {
"user": "str",
"pass": "str"
},
"ups": {
"upsname": "str",
"host": "str"
},
2018-11-08 20:56:10 +00:00
"delay": "int"
}
2018-11-08 21:16:24 +00:00
}