fix options

This commit is contained in:
Paolo Asperti 2018-11-08 22:16:24 +01:00
parent 250931c643
commit 1d1ceedd51
1 changed files with 18 additions and 14 deletions

View File

@ -1,26 +1,30 @@
{
"name": "Network UPS Tools - netclient",
"version": "0.1.1",
"version": "0.1.2",
"slug": "upsmon",
"description": "Connect to a remote NUT server",
"startup": "before",
"boot": "auto",
"options": {
"credentials": [
{ "user": "monuser", "pass": "secret" }
],
"ups": [
{ "upsname": "ups", "host": "IPADDR" }
],
"credentials": {
"user": "monuser",
"pass": "secret"
},
"ups": {
"upsname": "ups",
"host": "IPADDR"
},
"delay": "5"
},
"schema": {
"credentials": [
{ "user": "str", "pass": "str" }
],
"ups": [
{ "upsname": "str", "host": "str" }
],
"credentials": {
"user": "str",
"pass": "str"
},
"ups": {
"upsname": "str",
"host": "str"
},
"delay": "int"
}
}
}