use/ntp/chrony: initial target

chrony synchronizes time when connecting to a network using
NetworkManager. This feature is great for computers without
hardware clock, for example Raspberry Pi.
This commit is contained in:
Anton Midyukov 2019-02-12 21:03:38 +07:00 committed by Michael Shigorin
parent 960ccea04e
commit 7ef157e2b1

View File

@ -1,9 +1,18 @@
use/ntp: use/services use/pkgpriorities use/ntp: use/services use/pkgpriorities
@$(call add_feature) @$(call add_feature)
@$(call add,THE_PACKAGES,openntpd) @$(call add,THE_PACKAGES,$$(THE_NTPD))
@$(call add,PINNED_PACKAGES,openntpd) @$(call add,PINNED_PACKAGES,$$(THE_NTPD))
@$(call add,DEFAULT_SERVICES_ENABLE,ntpd) @$(call add,DEFAULT_SERVICES_ENABLE,$$(THE_NTPD_SERVICE))
@$(call try,THE_PACKAGES,openntpd)
@$(call try,PINNED_PACKAGES,openntpd)
@$(call try,DEFAULT_SERVICES_ENABLE,ntpd)
use/ntp/client: use/ntp use/ntp/client: use/ntp
@$(call set,THE_NTPD,openntpd)
@$(call set,THE_NTPD_SERVICE,ntpd)
@$(call add,NTP_SERVERS,pool.ntp.org) @$(call add,NTP_SERVERS,pool.ntp.org)
@$(call xport,NTP_SERVERS) @$(call xport,NTP_SERVERS)
use/ntp/chrony: use/ntp
@$(call set,THE_NTPD,chrony)
@$(call set,THE_NTPD_SERVICE,chronyd)