addon-chrony/chrony/config.json
Paul Sinclair b7b5d5d269
🔨 Update ci (#26)
Co-authored-by: sinclairpaul <sinclairpaul@users.noreply.github.com>
2021-01-21 21:02:51 +01:00

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)"
}
}