-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathinstall_uifile
More file actions
56 lines (56 loc) · 1.65 KB
/
install_uifile
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[
{
"step_title": "Beszel Agent Configuration",
"items": [
{
"type": "textfield",
"desc": "Provide the SSH public key of the Beszel Hub you want to add this system to.",
"subitems": [
{
"key": "wizard_pub_key",
"desc": "Public Key",
"defaultValue": "",
"emptyText": "ssh-ed25519 ....",
"width": "400",
"validator": {
"allowBlank": false,
"regex": {
"expr": "/^(ssh-(rsa|ed25519)|ecdsa-sha2-nistp(256|384|521)) [A-Za-z0-9+/]+={0,3}( .+)?$/",
"errorText": "Please enter a valid SSH public key."
}
}
}
]
},
{
"type": "textfield",
"desc": "Enter additional filesystems to monitor.",
"subitems": [
{
"key": "wizard_extra_fs",
"desc": "Extra Filesystems",
"emptyText": "/volume1,/volumeUSB1/usbshare",
"width": "400",
"defaultValue": ""
}
]
},
{
"type": "textfield",
"desc": "Configure SMART monitoring devices. List devices with :sat suffix for proper detection. Refer to Beszel documentation for details.",
"subitems": [
{
"key": "wizard_smart_devices",
"desc": "SMART Devices",
"emptyText": "/dev/sda:sat,/dev/sdb:sat",
"width": "400",
"defaultValue": ""
}
]
},
{
"desc": "The Beszel agent listens on port 45876 by default. Make sure this port is accessible from your Beszel Hub."
}
]
}
]