mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +03:00
https://ipfs.io/ Inter Platnetary File System (IPFS), a peer-to-peer hypermedia distribution protocol
15 lines
315 B
Text
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
|
|
}
|