public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/ppcoind/files: ppcoin.conf ppcoind.logrotate ppcoin.initd ppcoin.confd ppcoin.service
@ 2013-12-01 15:14 Anthony G. Basile (blueness)
  0 siblings, 0 replies; only message in thread
From: Anthony G. Basile (blueness) @ 2013-12-01 15:14 UTC (permalink / raw
  To: gentoo-commits

blueness    13/12/01 15:14:28

  Added:                ppcoin.conf ppcoind.logrotate ppcoin.initd
                        ppcoin.confd ppcoin.service
  Log:
  Initial commit
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.1                  net-p2p/ppcoind/files/ppcoin.conf

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.conf?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.conf?rev=1.1&content-type=text/plain

Index: ppcoin.conf
===================================================================
# http://www.bitcoin.org/smf/index.php?topic=644.0
#rpcuser=
#rpcpassword=








1.1                  net-p2p/ppcoind/files/ppcoind.logrotate

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoind.logrotate?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoind.logrotate?rev=1.1&content-type=text/plain

Index: ppcoind.logrotate
===================================================================
/var/lib/ppcoin/.ppcoin/debug.log {
	weekly
	sharedscripts
	postrotate
		killall -HUP ppcoind
	endscript
}



1.1                  net-p2p/ppcoind/files/ppcoin.initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.initd?rev=1.1&content-type=text/plain

Index: ppcoin.initd
===================================================================
#!/sbin/runscript
# 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 $?
}



1.1                  net-p2p/ppcoind/files/ppcoin.confd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.confd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.confd?rev=1.1&content-type=text/plain

Index: ppcoin.confd
===================================================================
# 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"



1.1                  net-p2p/ppcoind/files/ppcoin.service

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.service?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ppcoind/files/ppcoin.service?rev=1.1&content-type=text/plain

Index: ppcoin.service
===================================================================
# 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





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-12-01 15:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-01 15:14 [gentoo-commits] gentoo-x86 commit in net-p2p/ppcoind/files: ppcoin.conf ppcoind.logrotate ppcoin.initd ppcoin.confd ppcoin.service Anthony G. Basile (blueness)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox