blob: 9b01778a3a7dc7c08cc4038f3f248d5d773e532b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|