diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2016-08-18 20:46:53 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-21 22:24:04 +0200 |
commit | 5c9f3ca3e307be53b45beeed2ce1626f38008625 (patch) | |
tree | 919836fe454e953f46685adf8228b0401280d4b6 /testing/bitcoin/bitcoin.initd | |
parent | 6a00a953ba02bab6440a2c784e7db37c6eaeace1 (diff) | |
download | aports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.bz2 aports-5c9f3ca3e307be53b45beeed2ce1626f38008625.tar.xz |
testing/[various]: move to community
albatross-themes
apk-post-messages
autossh
bitcoin
btrbk
entr
ffmpegthumbnailer
firejail
firetools
fwsnort
gnome-colors
imapsync
inetutils-syslogd
inotify-tools-inc
isync
junit
ktsuss
letsencrypt-nosudo
libmbim
libndp
libqmi
libteam
mini-sendmail
modemmanager
namecoin
networkmanager
nginx-naxsi
numix-themes
nxapi
opencl-headers
opencl-icd-loader
opus-tools
perl-authen-ntlm
perl-bit-vector
perl-data-uniqid
perl-file-copy-recursive
perl-getopt-argvfile
perl-io-tee
perl-iptables-chainmgr
perl-iptables-parse
perl-module-scandeps
perl-par-dist
perl-par-packer
perl-par
perl-uri-escape
psad
py-crcmod
py-graphviz
py-lz4
py-opencl
py-opengl-accelerate
runit
secpwgen
secure-delete
socklog
spacefm
tinyssh
udevil
virt-viewer
virtualbricks
whois
wrk
xpra
zram-init
Diffstat (limited to 'testing/bitcoin/bitcoin.initd')
-rw-r--r-- | testing/bitcoin/bitcoin.initd | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/bitcoin/bitcoin.initd b/testing/bitcoin/bitcoin.initd deleted file mode 100644 index 393ea45374..0000000000 --- a/testing/bitcoin/bitcoin.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/openrc-run - -# Bitcoin init.d file for Alpine Linux. - -name=bitcoind -daemon=/usr/bin/$name -config=/etc/bitcoin.conf -user=bitcoin -group=bitcoin -## supercedes datadir set in $config ## -datadir=/var/lib/bitcoin -pidfile=/var/run/bitcoin/$name.pid - -depend() { - need net - after logger firewall -} - -start() { - ebegin "Starting ${name}" - # enforce permissions - checkpath -q -d ${pidfile%/*} -o ${user}:${group} - checkpath -q -d ${datadir} -m 0700 -o ${user}:${group} - checkpath -q -f ${config} -m 0600 -o ${user}:${group} - start-stop-daemon --start --quiet \ - --pidfile ${pidfile} \ - --user ${user}:${group} \ - --exec ${daemon} -- -conf=${config} -datadir=${datadir} -pid=${pidfile} - eend $? -} - -stop() { - ebegin "Stopping ${name}" - start-stop-daemon --stop --quiet \ - --pidfile ${pidfile} \ - --exec ${daemon} - eend $? -} |