summaryrefslogtreecommitdiff
path: root/net-p2p/go-ipfs-bin/files/ipfs.init
blob: 7b38cf43049bc155bee5c00c57db9371bb457922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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
}