diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-02-22 17:46:52 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2023-02-23 21:44:14 +0100 |
commit | f2d34a63df923ae18ede470a20217acd9764e465 (patch) | |
tree | 068aa88e40696f25a6da09eb49a8bc929b55ad3a /net-misc/ntp | |
parent | dev-python/qiskit-terra: drop timeout testing hacks (diff) | |
download | gentoo-f2d34a63df923ae18ede470a20217acd9764e465.tar.gz gentoo-f2d34a63df923ae18ede470a20217acd9764e465.tar.bz2 gentoo-f2d34a63df923ae18ede470a20217acd9764e465.zip |
net-misc/ntp: remove unused file
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29731
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'net-misc/ntp')
-rw-r--r-- | net-misc/ntp/files/ntpd.rc-r1 | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/net-misc/ntp/files/ntpd.rc-r1 b/net-misc/ntp/files/ntpd.rc-r1 deleted file mode 100644 index 7573411c9986..000000000000 --- a/net-misc/ntp/files/ntpd.rc-r1 +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -description="ntpd - the network time protocol daemon" -pidfile="/var/run/ntpd.pid" -command="/usr/sbin/ntpd" -command_args="-p ${pidfile} ${NTPD_OPTS}" -start_stop_daemon_args="--pidfile ${pidfile}" - -depend() { - use net dns logger - after ntp-client -} - -start_pre() { - if [ ! -f /etc/ntp.conf ] ; then - eerror "Please create /etc/ntp.conf" - return 1 - fi - return 0 -} |