From f01b3615cf4c849861f0ecd2920783b9d8101af8 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sat, 20 Mar 2010 12:12:59 +0000 Subject: [PATCH 1/1] [package] kill openntpd harder when stopping, patch from Stefan Monnier SVN-Revision: 20317 --- net/openntpd/Makefile | 2 +- net/openntpd/files/ntpd.init | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/net/openntpd/Makefile b/net/openntpd/Makefile index f47d74ab40..9640cf5c33 100644 --- a/net/openntpd/Makefile +++ b/net/openntpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openntpd PKG_VERSION:=3.9p1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \ diff --git a/net/openntpd/files/ntpd.init b/net/openntpd/files/ntpd.init index 0d6c7a10b6..31d9f22f03 100644 --- a/net/openntpd/files/ntpd.init +++ b/net/openntpd/files/ntpd.init @@ -14,5 +14,6 @@ start() { } stop() { - killall ntpd + # -1 seems insufficient to kill one of the two underlying processes. + killall -9 ntpd } -- 2.30.2