summaryrefslogtreecommitdiff
path: root/net-p2p/ppcoind/files
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/ppcoind/files')
-rw-r--r--net-p2p/ppcoind/files/ppcoin.conf8
-rw-r--r--net-p2p/ppcoind/files/ppcoin.confd10
-rw-r--r--net-p2p/ppcoind/files/ppcoin.initd104
-rw-r--r--net-p2p/ppcoind/files/ppcoin.initd-r128
-rw-r--r--net-p2p/ppcoind/files/ppcoin.service30
-rw-r--r--net-p2p/ppcoind/files/ppcoind-0.4.0-boost_chrono.patch10
-rw-r--r--net-p2p/ppcoind/files/ppcoind-0.4.0-gcc6.patch11
-rw-r--r--net-p2p/ppcoind/files/ppcoind.logrotate7
8 files changed, 0 insertions, 208 deletions
diff --git a/net-p2p/ppcoind/files/ppcoin.conf b/net-p2p/ppcoind/files/ppcoin.conf
deleted file mode 100644
index c6a55f3d9133..000000000000
--- a/net-p2p/ppcoind/files/ppcoin.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-# http://www.bitcoin.org/smf/index.php?topic=644.0
-#rpcuser=
-#rpcpassword=
-
-
-
-
-
diff --git a/net-p2p/ppcoind/files/ppcoin.confd b/net-p2p/ppcoind/files/ppcoin.confd
deleted file mode 100644
index 81fbf49e9f38..000000000000
--- a/net-p2p/ppcoind/files/ppcoin.confd
+++ /dev/null
@@ -1,10 +0,0 @@
-# Config file for /etc/init.d/ppcoind
-
-# owner of ppciond process (don't change, must be existing)
-PPCOIN_USER="ppcoin"
-
-# See http://www.bitcoin.org/smf/index.php?topic=1063
-PPCOIN_OPTS="${PPCOIN_OPTS}"
-
-# nice level
-NICELEVEL="19"
diff --git a/net-p2p/ppcoind/files/ppcoin.initd b/net-p2p/ppcoind/files/ppcoin.initd
deleted file mode 100644
index e739dc7dba4e..000000000000
--- a/net-p2p/ppcoind/files/ppcoin.initd
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/sbin/openrc-run
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-VARDIR="/var/lib/ppcoin"
-CONFFILE="${VARDIR}/.ppcoin/ppcoin.conf"
-
-depend() {
- need net
-}
-
-checkconfig() {
- if [[ "${PPCOIN_USER}" == "" ]] ; then
- eerror "Please edit /etc/conf.d/ppcoind"
- eerror "A user must be specified to run ppcoind as that user."
- eerror "Modify USER to your needs (you may also add a group after a colon)"
- return 1
- fi
- if ! `getent passwd | cut -d ':' -f 1 | grep $( echo "${PPCOIN_USER}" | cut -d ':' -f 1 ) -sq` ; then
- eerror "Please edit /etc/conf.d/ppcoind"
- eerror "Specified user must exist!"
- return 1
- fi
- if `echo "${PPCOIN_USER}" | grep ':' -sq` ; then
- if ! `cut -d ':' -f 1 /etc/group | grep $( echo "${PPCOIN_USER}" | cut -d ':' -f 2 ) -sq` ; then
- eerror "Please edit /etc/conf.d/ppcoind"
- eerror "Specified group must exist!"
- return 1
- fi
- fi
- if ! grep -q '^rpcpassword=' "${CONFFILE}"; then
- eerror "Please edit `readlink -f ${CONFFILE}`"
- eerror "There must be at least a line assigning rpcpassword=something-secure"
- return 1
- fi
- if ! stat -Lc '%a' "${CONFFILE}" | grep -q '^[4567]00$'; then
- eerror "`readlink -f ${CONFFILE}` should not be readable by other users"
- return 1
- fi
- return 0
-}
-
-start() {
- checkconfig || return 1
- ebegin "Starting PPcoind daemon"
-
- pkg-config openrc
- if [ $? = 0 ]; then
- start_openrc
- else
- start_baselayout
- fi
-}
-
-stop() {
- ebegin "Stopping PPcoin daemon"
-
- pkg-config openrc
- if [ $? = 0 ]; then
- stop_openrc
- else
- stop_baselayout
- fi
-}
-
-start_openrc() {
- start-stop-daemon \
- --start --user "${PPCOIN_USER}" --name ppcoind \
- --pidfile /var/run/ppcoind.pid --make-pidfile \
- --env HOME="${VARDIR}" --exec /usr/bin/ppcoind \
- --nicelevel "${NICELEVEL}" \
- --background \
- --wait 2000 \
- -- ${PPCOIN_OPTS}
- eend $?
-}
-
-stop_openrc() {
- start-stop-daemon --stop --user "${PPCOIN_USER}" \
- --name ppcoind --pidfile /var/run/ppcoind.pid \
- --wait 30000 \
- --progress
- eend $?
-}
-
-start_baselayout() {
- start-stop-daemon \
- --start --user "${PPCOIN_USER}" --name ppcoind \
- --pidfile /var/run/ppcoind.pid --make-pidfile \
- --env HOME="${VARDIR}" --exec /usr/bin/ppcoind \
- --chuid "${PPCOIN_USER}" \
- --nicelevel "${NICELEVEL}" \
- --background \
- -- ${PPCOIN_OPTS}
- eend $?
-}
-
-stop_baselayout() {
- start-stop-daemon \
- --stop \
- --user "${PPCOIN_USER}" \
- --name ppcoind \
- --pidfile /var/run/ppcoind.pid
- eend $?
-}
diff --git a/net-p2p/ppcoind/files/ppcoin.initd-r1 b/net-p2p/ppcoind/files/ppcoin.initd-r1
deleted file mode 100644
index 8023f1f0d378..000000000000
--- a/net-p2p/ppcoind/files/ppcoin.initd-r1
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-vardir="/var/lib/ppcoin"
-conffile="${vardir}/.ppcoin/ppcoin.conf"
-ppcoind_user="${PPCOIN_USER:-nobody:nobody}"
-
-description="Cryptocurrency forked from Bitcoin which aims to be energy efficiency."
-pidfile="/run/${SVCNAME}.pid"
-command="/usr/bin/ppcoind"
-command_args="${PPCOIN_OPTS}"
-command_background="true"
-start_stop_daemon_args="-u ${ppcoind_user} -e HOME=${vardir} -N ${NICELEVEL:-0} -w 2000"
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -f -o ${ppcoind_user} -m 0400 ${conffile} || return 1
-
- if ! grep -q '^rpcpassword=' "${conffile}"; then
- eerror "Please edit `readlink -f ${conffile}`"
- eerror "There must be at least a line assigning rpcpassword=something-secure"
- return 1
- fi
-}
diff --git a/net-p2p/ppcoind/files/ppcoin.service b/net-p2p/ppcoind/files/ppcoin.service
deleted file mode 100644
index 3a83178fe04e..000000000000
--- a/net-p2p/ppcoind/files/ppcoin.service
+++ /dev/null
@@ -1,30 +0,0 @@
-# It's not recommended to modify this file in-place, because it will be
-# overwritten during package upgrades. If you want to customize, the
-# best way is to create file
-# "/etc/systemd/system/ppcoind.service.d/*.conf"
-# containing your changes
-
-# For example, if you want to change some daemon and/or unit options,
-# create a file named
-# "/etc/systemd/system/ppcoind.service.d/myopts.conf"
-# containing:
-# [Service]
-# Environment="PPCOIN_OPTS=-debug -logtimestamps"
-# Nice=10
-# This will override the setting appearing below.
-
-# Note that almost all daemon options could be specified in
-# /etc/ppcoin/ppcoin.conf
-
-[Unit]
-Description=PPcoin Daemon
-After=network.target
-
-[Service]
-User=ppcoin
-Environment=PPCOIN_OPTS=
-ExecStart=/usr/bin/ppcoind -daemon=0 $PPCOIN_OPTS
-ExecReload=/bin/kill -HUP $MAINPID
-
-[Install]
-WantedBy=multi-user.target
diff --git a/net-p2p/ppcoind/files/ppcoind-0.4.0-boost_chrono.patch b/net-p2p/ppcoind/files/ppcoind-0.4.0-boost_chrono.patch
deleted file mode 100644
index 390d5c7c94b1..000000000000
--- a/net-p2p/ppcoind/files/ppcoind-0.4.0-boost_chrono.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/makefile.unix
-+++ b/src/makefile.unix
-@@ -30,6 +30,7 @@
- -l boost_filesystem$(BOOST_LIB_SUFFIX) \
- -l boost_program_options$(BOOST_LIB_SUFFIX) \
- -l boost_thread$(BOOST_LIB_SUFFIX) \
-+ -l boost_chrono$(BOOST_LIB_SUFFIX) \
- -l db_cxx$(BDB_LIB_SUFFIX) \
- -l ssl \
- -l crypto
diff --git a/net-p2p/ppcoind/files/ppcoind-0.4.0-gcc6.patch b/net-p2p/ppcoind/files/ppcoind-0.4.0-gcc6.patch
deleted file mode 100644
index 76bad3feb5a4..000000000000
--- a/net-p2p/ppcoind/files/ppcoind-0.4.0-gcc6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/net.cpp
-+++ b/src/net.cpp
-@@ -51,7 +51,7 @@ CAddress addrLocalHost(CService("0.0.0.0", 0), nLocalServices);
- CAddress addrSeenByPeer(CService("0.0.0.0", 0), nLocalServices);
- static CNode* pnodeLocalHost = NULL;
- uint64 nLocalHostNonce = 0;
--array<int, THREAD_MAX> vnThreadsRunning;
-+boost::array<int, THREAD_MAX> vnThreadsRunning;
- static SOCKET hListenSocket = INVALID_SOCKET;
- CAddrMan addrman;
-
diff --git a/net-p2p/ppcoind/files/ppcoind.logrotate b/net-p2p/ppcoind/files/ppcoind.logrotate
deleted file mode 100644
index 4ea060b0f0f7..000000000000
--- a/net-p2p/ppcoind/files/ppcoind.logrotate
+++ /dev/null
@@ -1,7 +0,0 @@
-/var/lib/ppcoin/.ppcoin/debug.log {
- weekly
- sharedscripts
- postrotate
- killall -HUP ppcoind
- endscript
-}