~alpine/devel

setup-ntp: allow selecting busybox ntpd v1 PROPOSED

Eivind Uggedal: 1
 setup-ntp: allow selecting busybox ntpd

 1 files changed, 8 insertions(+), 4 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/devel/patches/37/mbox | git am -3
Learn more about email & git

[alpine-devel] [PATCH] setup-ntp: allow selecting busybox ntpd Export this patch

---
 setup-ntp.in | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/setup-ntp.in b/setup-ntp.in
index 38887cede8b8..b544a2a88ab4 100755
--- a/setup-ntp.in
+++ b/setup-ntp.in
@@ -12,7 +12,7 @@ Setup NTP time synchronization

options:
 -h  Show this help
 -c  Choice of NTP daemon: chrony openntpd none
 -c  Choice of NTP daemon: busybox openntpd chrony none
__EOF__
        exit 1
}
@@ -25,7 +25,7 @@ while getopts "hc:" opt; do
done

if [ -z "$ntpchoice" ]; then
        echo -n "Which NTP client to run? ('openntpd', 'chrony' or 'none') [chrony] "
        echo -n "Which NTP client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony] "
        default_read ntpchoice "chrony"
fi

@@ -35,6 +35,10 @@ case "$ntpchoice" in
none|abort)
	exit 0
	;;
busybox)
	pkgs=''
	svc=ntpd
	;;
chrony)
	if apk info --installed --quiet acf-core; then
		pkgs="$pkgs acf-chrony"
@@ -42,11 +46,11 @@ chrony)
	svc=chronyd
	;;
openntpd)
	svc=ntpd
	svc=openntpd
	;;
esac

apk add --quiet $pkgs
[ -z "$pkgs" ] || apk add --quiet $pkgs
rc-update add $svc default
rc-service $svc start

-- 
1.9.0



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---