1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/testing/gnunet/gnunet.pre-install
xrs 2dc67ab24d testing/gnunet: new aport
https://gnunet.org
A framework for secure and privacy enhancing peer-to-peer networking
testing/

Closes !1907
2020-03-07 17:33:30 +00:00

11 lines
298 B
Bash

#!/bin/sh
# Add special group gnunetdns for controlling access to "gnunet-helper-dns".
addgroup -S gnunetdns 2>/dev/null
addgroup -S gnunet 2>/dev/null
# Add system user/group gnunet for system services
adduser -S -h "/var/lib/gnunet" -s /bin/sh \
-G gnunet -g gnunet gnunet 2>/dev/null
exit 0