mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-10 15:44:20 +01:00
* Update branch of add-ons with armv7 * update configurator * Fix docker file * Update docker files * fix image * Update * certbot
32 lines
726 B
JSON
32 lines
726 B
JSON
{
|
|
"name": "RPC Shutdown",
|
|
"version": "1.0",
|
|
"slug": "rpc_shutdown",
|
|
"description": "Simple way for remote windows shutdowns",
|
|
"url": "https://home-assistant.io/addons/rpc_shutdown/",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"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"
|
|
}
|