From: Miroslav Lichvar Date: Mon, 14 Sep 2026 18:24:03 +0000 (+0200) Subject: chrony: fix uci leapsecmode option X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=85c59cc1cc7555b34224b505bf2830853b5685be;p=openwrt-packages.git chrony: fix uci leapsecmode option Fixes #30518. Signed-off-by: Miroslav Lichvar --- diff --git a/net/chrony/Makefile b/net/chrony/Makefile index d14e61d5a..7225d09a3 100644 --- a/net/chrony/Makefile +++ b/net/chrony/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=chrony PKG_VERSION:=4.9 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://chrony-project.org/releases/ diff --git a/net/chrony/files/chronyd.init b/net/chrony/files/chronyd.init index 85de475df..aa535b198 100644 --- a/net/chrony/files/chronyd.init +++ b/net/chrony/files/chronyd.init @@ -107,7 +107,7 @@ handle_systemclock() { config_get precision "$cfg" precision config_get leapsecmode "$cfg" leapsecmode [ -n "$precision" ] && echo clockprecision "$precision" - [ -n "$leapsecmode" ] && echo clockleapsecmode "$leapsecmode" + [ -n "$leapsecmode" ] && echo leapsecmode "$leapsecmode" } handle_logging() {