mirror of
https://github.com/hassio-addons/addon-chrony.git
synced 2025-05-06 12:11:28 +00:00
31 lines
829 B
JSON
31 lines
829 B
JSON
{
|
|
"name": "chrony",
|
|
"version": "dev",
|
|
"slug": "chrony",
|
|
"description": "A local NTP (Network Time Protocol) server for cameras etc.",
|
|
"url": "https://github.com/hassio-addons/addon-chrony",
|
|
"startup": "system",
|
|
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
|
|
"hassio_api": true,
|
|
"init": false,
|
|
"privileged": ["SYS_TIME"],
|
|
"ports": {
|
|
"123/udp": 123
|
|
},
|
|
"ports_description": {
|
|
"123/udp": "NTP; Network Time Protocol"
|
|
},
|
|
"options": {
|
|
"set_system_clock": true,
|
|
"mode": "pool",
|
|
"ntp_pool": "pool.ntp.org",
|
|
"ntp_server": ["54.39.13.155", "briareus.schulte.org"]
|
|
},
|
|
"schema": {
|
|
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
|
"set_system_clock": "bool",
|
|
"ntp_pool": "str?",
|
|
"ntp_server": ["str?"],
|
|
"mode": "list(pool|server)"
|
|
}
|
|
}
|