From 0d2d66c2582b74ed6696af7443cbc1060938f62b Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 14 Mar 2023 12:53:19 -0500 Subject: [PATCH] chrony: allow specifying additional options --- srcpkgs/chrony/files/chronyd/run | 3 ++- srcpkgs/chrony/template | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/chrony/files/chronyd/run b/srcpkgs/chrony/files/chronyd/run index a6aeb85624ce..c26b42a1fec0 100644 --- a/srcpkgs/chrony/files/chronyd/run +++ b/srcpkgs/chrony/files/chronyd/run @@ -1,4 +1,5 @@ #!/bin/sh exec 2>&1 +[ -r conf ] && . ./conf install -d -m750 -o chrony -g chrony /var/run/chrony -exec chronyd -n -u chrony +exec chronyd -n -u chrony ${OPTS} diff --git a/srcpkgs/chrony/template b/srcpkgs/chrony/template index b0c51cc263fa..758965f7bce2 100644 --- a/srcpkgs/chrony/template +++ b/srcpkgs/chrony/template @@ -2,7 +2,7 @@ # When Updating: Please confirm the upstream config still refers to make_dirs pkgname=chrony version=4.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--without-nss --enable-scfilter --with-sendmail=/usr/bin/sendmail"