mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-27 16:56:02 +01:00
31 lines
668 B
JSON
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"
|
|
}
|