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
12 lines
470 B
Bash
12 lines
470 B
Bash
#!/bin/sh
|
|
|
|
printf " *\n * To setup GNUnet user services, regular users must do the following steps:\n"
|
|
printf " * add user to 'gnunet' group\n"
|
|
printf " * add the following lines to /home/USER/.config/gnunet.conf\n"
|
|
printf " [arm]\n"
|
|
printf " START_SYSTEM_SERVICES = NO\n"
|
|
printf " START_USER_SERVICES = YES\n"
|
|
printf " * start GNUnet system services with openrc\n"
|
|
printf " * start GNUnet user services with 'gnunet-arm -s'\n *\n"
|
|
|
|
exit 0
|