diffstat for ntp-4.2.6.p5+dfsg ntp-4.2.6.p5+dfsg changelog | 9 +++++++++ ntpdate.if-up | 10 ---------- 2 files changed, 9 insertions(+), 10 deletions(-) diff -Nru ntp-4.2.6.p5+dfsg/debian/changelog ntp-4.2.6.p5+dfsg/debian/changelog --- ntp-4.2.6.p5+dfsg/debian/changelog 2016-10-05 12:14:17.000000000 +0000 +++ ntp-4.2.6.p5+dfsg/debian/changelog 2017-06-20 09:36:04.000000000 +0000 @@ -1,3 +1,12 @@ +ntp (1:4.2.6.p5+dfsg-3ubuntu2.14.04.11) trusty; urgency=medium + + * debian/ntpdate.if-up: Drop delta to stop/start service around ntpdate + updates - fixes ntp restart storms due to network changes, fixes + accidential start of ntp, avoids issues of ntpdate jumping too far while + running ntp was supposed to drift (LP: #1593907) + + -- Christian Ehrhardt Tue, 20 Jun 2017 11:35:48 +0200 + ntp (1:4.2.6.p5+dfsg-3ubuntu2.14.04.10) trusty-security; urgency=medium * SECURITY UPDATE: Deja Vu replay attack on authenticated broadcast mode diff -Nru ntp-4.2.6.p5+dfsg/debian/ntpdate.if-up ntp-4.2.6.p5+dfsg/debian/ntpdate.if-up --- ntp-4.2.6.p5+dfsg/debian/ntpdate.if-up 2016-01-19 10:21:15.000000000 +0000 +++ ntp-4.2.6.p5+dfsg/debian/ntpdate.if-up 2017-06-20 09:34:59.000000000 +0000 @@ -39,14 +39,6 @@ LOCKTOUCHPID="$!" fi -if [ -e /usr/sbin/openntpd ]; then - service='openntpd' -else - service='ntp' -fi - -invoke-rc.d --quiet $service stop >/dev/null 2>&1 || true - /usr/sbin/ntpdate-debian -s $OPTS 2>/dev/null || : if [ -x /usr/bin/lockfile-create ] ; then @@ -54,6 +46,4 @@ lockfile-remove $LOCKFILE fi -invoke-rc.d --quiet $service start >/dev/null 2>&1 || true - ) &