summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Blas (klondike) Izquierdo Riera <klondike@klondike.es>2018-10-21 23:00:30 +0200
committerFrancisco Blas (klondike) Izquierdo Riera <klondike@klondike.es>2018-10-21 23:00:30 +0200
commitacfe1311407793d7226814db3332f14b67dd6ed9 (patch)
tree4686ff67ce82ef8bd349fa1424e0d0de670b25fe /net-misc/i2pd/files/i2pd.initd
parentAdd sqlite dep (diff)
downloadklondike-acfe1311407793d7226814db3332f14b67dd6ed9.tar.gz
klondike-acfe1311407793d7226814db3332f14b67dd6ed9.tar.bz2
klondike-acfe1311407793d7226814db3332f14b67dd6ed9.zip
net-misc/i2pd: Drop old unused version of the package
Diffstat (limited to 'net-misc/i2pd/files/i2pd.initd')
-rw-r--r--net-misc/i2pd/files/i2pd.initd24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/i2pd/files/i2pd.initd b/net-misc/i2pd/files/i2pd.initd
deleted file mode 100644
index b00a771..0000000
--- a/net-misc/i2pd/files/i2pd.initd
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-description="C++ daemon for accessing the I2P network"
-
-depend() {
- use dns logger netmount
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
- checkpath -f "${I2PD_LOG}" -o "${I2PD_USER}:${I2PD_GROUP}"
- checkpath -f "${I2PD_PID}" -o "${I2PD_USER}:${I2PD_GROUP}"
- start-stop-daemon -S -b -u "${I2PD_USER}:${I2PD_GROUP}" /usr/bin/i2pd -- ${I2PDOPTIONS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon -K -p "${I2PD_PID}"
- eend $?
-}