Files
addons/rpc_shutdown/config.json
Pascal Vizeli fad34976a0 fix smb.conf on rpc shutdown (#187)
* Update Dockerfile

* Update config.json
2017-10-08 21:49:38 +02:00

31 lines
668 B
JSON

{
"name": "RPC Shutdown",
"version": "0.3",
"slug": "rpc_shutdown",
"description": "Simple way for remote windows shutdowns",
"url": "https://home-assistant.io/addons/rpc_shutdown/",
"startup": "services",
"boot": "auto",
"stdin": true,
"host_network": true,
"options": {
"computers": [
{
"alias": "test-pc",
"address": "192.168.0.1",
"credentials": "user%password"
}
]
},
"schema": {
"computers": [
{
"alias": "match(^[\\w-]*$)",
"address": "str",
"credentials": "match(^[^%]*(?:%[^%]*)?$)"
}
]
},
"image": "homeassistant/{arch}-addon-rpc_shutdown"
}