1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/testing/go-ipfs/ipfs.initd
Oleg Titov 0f54ffe2cb testing/go-ipfs: new aport
https://ipfs.io/
Inter Platnetary File System (IPFS), a peer-to-peer hypermedia distribution protocol
2019-04-01 19:11:31 +00:00

15 lines
315 B
Text

#!/sbin/openrc-run
export IPFS_PATH=${IPFS_PATH:-/var/lib/ipfs/.ipfs}
pidfile="/run/ipfs.pid"
command="/usr/bin/ipfs"
command_args="daemon --enable-gc --migrate"
command_user="ipfs:ipfs"
start_stop_daemon_args="--wait 1000 -b \
-1 /var/log/ipfs/ipfs.log \
-2 /var/log/ipfs/ipfs.log"
depend() {
need net
}