diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-12-08 12:22:52 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-12-08 12:25:14 +0100 |
commit | dee8c1cf023188cb2bfe67ed2189016c02941bc3 (patch) | |
tree | 0c7c294c0401ec0d1dc0d77ef5abe89b617cf150 /sys-devel/distcc/files/3.1/init | |
parent | sys-fs/reiserfsprogs: Drop old (diff) | |
download | gentoo-dee8c1cf023188cb2bfe67ed2189016c02941bc3.tar.gz gentoo-dee8c1cf023188cb2bfe67ed2189016c02941bc3.tar.bz2 gentoo-dee8c1cf023188cb2bfe67ed2189016c02941bc3.zip |
sys-devel/distcc: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-devel/distcc/files/3.1/init')
-rw-r--r-- | sys-devel/distcc/files/3.1/init | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/sys-devel/distcc/files/3.1/init b/sys-devel/distcc/files/3.1/init deleted file mode 100644 index e89dcb3702b7..000000000000 --- a/sys-devel/distcc/files/3.1/init +++ /dev/null @@ -1,31 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net - use avahi-daemon ypbind -} - -start() { - ebegin "Starting distccd" - - if [ ! -e /var/run/distccd ] ; then - mkdir -p /var/run/distccd - chown distcc:daemon /var/run/distccd - fi - - # Load PATH and GCC_SPECS from gcc-config, bug #262773 - eval "$(gcc-config -E)" - - start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" --user distcc -- \ - --daemon --pid-file "${DISTCCD_PIDFILE}" \ - ${DISTCCD_OPTS} - eend $? -} - -stop() { - ebegin "Stopping distccd" - start-stop-daemon --stop --quiet --pidfile "${DISTCCD_PIDFILE}" - eend $? -} |