forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
35 lines (35 loc) · 937 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "RPC Shutdown",
"version": "2.2",
"slug": "rpc_shutdown",
"description": "Shutdown Windows machines remotely",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/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",
"delay": 0,
"message": "Home Assistant is shutting down this PC. This cannot be canceled. Please save your work!"
}
]
},
"schema": {
"computers": [
{
"alias": "match(^[\\w-]*$)",
"address": "str",
"credentials": "match(^[^%]*(?:%[^%]*)?$)",
"delay": "int(0,600)?",
"message": "str?"
}
]
},
"image": "homeassistant/{arch}-addon-rpc_shutdown"
}