From: Michael Mair-Keimberger (asterix) Date: Fri, 10 Feb 2017 15:43:03 +0000 (+0100) Subject: sys-cluster/ccs: remove unused files X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9448a406d7cb09cb828895832ea6f9c7e39253ab;p=gentoo.git sys-cluster/ccs: remove unused files Closes: https://github.com/gentoo/gentoo/pull/3900 --- diff --git a/sys-cluster/ccs/files/ccsd.conf b/sys-cluster/ccs/files/ccsd.conf deleted file mode 100644 index 66f833aad571..000000000000 --- a/sys-cluster/ccs/files/ccsd.conf +++ /dev/null @@ -1,6 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License, v2 or later -# $Id$ - -CCSD_OPTS= diff --git a/sys-cluster/ccs/files/ccsd.rc b/sys-cluster/ccs/files/ccsd.rc deleted file mode 100644 index 8cc48a91c512..000000000000 --- a/sys-cluster/ccs/files/ccsd.rc +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - use net - provide ccs -} - -exefile=/sbin/ccsd - -start() { - ebegin "Starting ccsd" - start-stop-daemon --start --quiet \ - --exec ${exefile} -- ${CCSD_OPTS} - sleep 2s - eend $? -} - -stop() { - ebegin "Stopping ccsd" - start-stop-daemon --stop --quiet \ - -s 9 --exec ${exefile} - eend $? -} -