#!/sbin/openrc-run # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 export IPFS_PATH=${IPFS_PATH:-"/home/${RC_SVCNAME#*.}/.ipfs"} pidfile="/run/ipfs.pid" command="/usr/bin/ipfs" command_args="daemon --enable-gc --migrate" command_user="${RC_SVCNAME#*.}" start_stop_daemon_args="--wait 1000 -b -m \ -1 /var/log/ipfs/ipfs.log \ -2 /var/log/ipfs/ipfs.log" depend() { need net }