mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
586 B
28 lines
586 B
9 years ago
|
#!/sbin/openrc-run
|
||
|
|
||
|
pidfile="/var/run/i2pd.pid"
|
||
|
logfile="/var/log/i2pd.log"
|
||
|
mainconf="/etc/i2pd/i2pd.conf"
|
||
|
tunconf="/etc/i2pd/tunnels.conf"
|
||
|
|
||
|
. /etc/default/i2pd
|
||
|
|
||
|
name="i2pd"
|
||
|
command="/usr/sbin/i2pd"
|
||
|
command_args="--service --daemon --log=file --logfile=$logfile --conf=$mainconf --tunconf=$tunconf"
|
||
|
description="i2p router written in C++"
|
||
|
required_dirs="/var/lib/i2pd"
|
||
|
required_files="$mainconf"
|
||
|
start_stop_daemon_args="--chuid i2pd"
|
||
|
|
||
|
depend() {
|
||
|
need mountall
|
||
|
use net
|
||
|
after bootmisc
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
checkpath -f -o i2pd:adm -w $pidfile
|
||
|
checkpath -f -o i2pd:adm -w $logfile
|
||
|
}
|