blob: 660fb785f58485ec20c1b0131c917967ec3a45d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
post_install() {
echo
echo 'How to run GNUnet Groupchat'
echo '==========================='
echo
echo 'Server'
echo '------'
echo '`./groupchat --config:<PATH-TO-GNUNET-CONFIG> --port:<SHARED-SECRET-STRING>`'
echo
echo 'EXAMPLE:'
echo '`./groupchat --config:~/.config/gnunet.conf --port:welcome`'
echo
echo '(Server will need to share its Peer-ID with clients. You can find your Peer-ID by running `gnunet-peerinfo -s`)'
echo
echo 'Client'
echo '------'
echo '`./groupchat --config:<PATH-TO-GNUNET-CONFIG> --server:<SERVER'\''S-PEER-ID> --port:<SHARED-SECRET-STRING>`'
echo
echo 'EXAMPLE:'
echo '`./groupchat --config:~/.config/gnunet.conf --server:P4T5GHS1PCZ06R82D3KW8Z8J1113BQZWAWGYHTZ8G1ZXMWXQGAVG --port:welcome`'
echo
}
|