🎉 Release of add-on chrony 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-03-20 14:19:49 +00:00
parent 72e0897534
commit c579136ced
4 changed files with 114 additions and 0 deletions

View file

@ -486,6 +486,20 @@ Manage your UniFi network using a web browser
[:books: UniFi Controller add-on documentation][addon-doc-unifi]
### ✓ [chrony][addon-chrony]
![Latest Version][chrony-version-shield]
![Supports armhf Architecture][chrony-armhf-shield]
![Supports armv7 Architecture][chrony-armv7-shield]
![Supports aarch64 Architecture][chrony-aarch64-shield]
![Supports amd64 Architecture][chrony-amd64-shield]
![Supports i386 Architecture][chrony-i386-shield]
![Docker Pulls][chrony-pulls-shield]
A local NTP (Network Time Protocol) server for cameras etc.
[:books: chrony add-on documentation][addon-doc-chrony]
### ✓ [motionEye][addon-motioneye]
![Latest Version][motioneye-version-shield]
@ -560,6 +574,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: Tor][tor-issue]
- [Open an issue for the add-on: Traccar][traccar-issue]
- [Open an issue for the add-on: UniFi Controller][unifi-issue]
- [Open an issue for the add-on: chrony][chrony-issue]
- [Open an issue for the add-on: motionEye][motioneye-issue]
For a general repository issue or add-on ideas [open an issue here][issue]
@ -930,6 +945,16 @@ SOFTWARE.
[unifi-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[unifi-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[unifi-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-chrony]: https://github.com/hassio-addons/addon-chrony/tree/v0.1.0
[addon-doc-chrony]: https://github.com/hassio-addons/addon-chrony/blob/v0.1.0/README.md
[chrony-issue]: https://github.com/hassio-addons/addon-chrony/issues
[chrony-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[chrony-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/chrony-armhf.svg
[chrony-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[chrony-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[chrony-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[chrony-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[chrony-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-motioneye]: https://github.com/hassio-addons/addon-motioneye/tree/v0.3.0
[addon-doc-motioneye]: https://github.com/hassio-addons/addon-motioneye/blob/v0.3.0/README.md
[motioneye-issue]: https://github.com/hassio-addons/addon-motioneye/issues

1
chrony/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial add-on release

44
chrony/README.md Normal file
View file

@ -0,0 +1,44 @@
# Community Hass.io Add-ons: chrony
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
chrony NTP Server.
## About
An NTP server accesible by all hosts on the local network, useful for setting
time on devices with controlled internet access (such as cameras).
[Click here for the full documentation][docs]
## WARNING! THIS IS A BETA VERSION!
This Hass.io Add-ons repository contains beta releases of add-ons.
- They might stop working at any time.
- They could have a negative impact on your system.
This repository was created for:
- Anybody willing to test.
- Anybody interested in trying out upcoming add-ons or add-on features.
If you are more interested in stable releases of our add-ons:
<https://github.com/hassio-addons/repository>
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/sinclairpaul
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-chrony/blob/v0.1.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-chrony/tree/v0.1.0

44
chrony/config.json Normal file
View file

@ -0,0 +1,44 @@
{
"name": "chrony",
"version": "0.1.0",
"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"
],
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"map": [],
"privileged": [
"SYS_TIME"
],
"ports": {
"123/udp": 123
},
"options": {
"set_system_clock": true,
"mode": "pool",
"ntp_pool": "pool.ntp.org",
"ntp_server": [
"54.39.13.155",
"briareus.schulte.org"
]
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"set_system_clock": "bool",
"ntp_pool": "str?",
"ntp_server": [
"str?"
],
"mode": "match(^(pool|server)$)"
},
"image": "hassioaddons/chrony-{arch}"
}