mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 04:05:40 +03:00
https://gnunet.org A framework for secure and privacy enhancing peer-to-peer networking testing/ Closes !1907
13 lines
319 B
Text
13 lines
319 B
Text
#!/sbin/openrc-run
|
|
|
|
name="gnunet-system-service"
|
|
description="A secure and privacy enhancing peer-to-peer overlay network"
|
|
command="/usr/lib/gnunet/libexec/gnunet-service-arm"
|
|
command_args="-c /etc/gnunet.conf"
|
|
command_user="gnunet:gnunet"
|
|
command_background="yes"
|
|
pidfile="/run/${SVCNAME}.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|