From db29a76ed9d85653c7c4cd44572d94438249fb3a Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Wed, 18 May 2016 01:31:59 +0200 Subject: [PATCH] saving uncommitted changes in /etc prior to emerge run --- init.d/ntpd | 4 ++-- init.d/sntp | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/init.d/ntpd b/init.d/ntpd index f89bdd3c..5bed5ce7 100755 --- a/init.d/ntpd +++ b/init.d/ntpd @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2014 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/init.d/sntp b/init.d/sntp index b0261d9d..5b3b4632 100755 --- a/init.d/sntp +++ b/init.d/sntp @@ -1,15 +1,17 @@ -#!/sbin/runscript -# Copyright 1999-2013 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ +command="/usr/bin/sntp" + depend() { before cron portmap after net use dns logger } -checkconfig() { +start_pre() { if [ -z "${SNTP_OPTS}" ] ; then eerror "Please edit /etc/conf.d/sntp" eerror "I need to know what server/options to use!" @@ -19,9 +21,7 @@ checkconfig() { } start() { - checkconfig || return $? - ebegin "Setting clock via SNTP" - /usr/bin/sntp ${SNTP_OPTS} + ${command} ${SNTP_OPTS} eend $? "Failed to set clock" } -- 2.39.5