mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
https://gnunet.org A framework for secure and privacy enhancing peer-to-peer networking testing/ Closes !1907
11 lines
298 B
Bash
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
|