contrib/packages/guix: use texinfo-5.2 for some packages. Start backporting Texlive...
[oweals/gnunet.git] / contrib / gnunet-gns-import.sh
1 #!/bin/sh
2 # This shell-script will import some GNS authorities into your GNS
3 # namestore.
4
5 LOCATION=$(which gnunet-config)
6 if [ -z $LOCATION ]
7 then
8   LOCATION="gnunet-config"
9 fi
10 $LOCATION --version 1> /dev/null
11 if test $? != 0
12 then
13         echo "GNUnet command line tools not found, check environmental variables PATH and GNUNET_PREFIX"
14         exit 1
15 fi
16
17 gnunet-arm -I 1> /dev/null 2>/dev/null
18 if [ ! $? -eq 0 ]
19 then
20         echo "GNUnet is not running, please start GNUnet before running import"
21         exit 1
22 fi
23
24 options=''
25
26 while getopts "c:" opt; do
27   case $opt in
28     c)
29       options="$options -c $OPTARG"
30       ;;
31     \?)
32       echo "Invalid option: -$OPTARG" >&2
33       exit 1
34       ;;
35     :)
36       echo "Option -$OPTARG requires an argument." >&2
37       exit 1
38       ;;
39   esac
40 done
41
42 # By default, we create two GNS zones:
43 gnunet-identity -C master-zone $options
44 gnunet-identity -C private-zone $options
45
46 # Additionally, we create the FS SKS zone
47 gnunet-identity -C sks-zone $options
48
49 #### Integrate those with the respective subsystems ####
50
51 # Default zone for 'gnunet-gns' lookups
52 gnunet-identity -e master-zone -s gns-master $options
53
54 # Default zone for 'gnunet-namestore' operations
55 gnunet-identity -e master-zone -s namestore $options
56
57 # Use master-zone for GNS proxy lookups
58 gnunet-identity -e master-zone -s gns-proxy $options
59
60 # Use master-zone for intercepted DNS queries
61 # (remove this entry to disable DNS interception by GNS service)
62 gnunet-identity -e master-zone -s gns-intercept $options
63
64 # Use master-zone for DNS2GNS proxy.
65 gnunet-identity -e master-zone -s dns2gns $options
66
67 # 'gns-private' is not yet used (!)
68 gnunet-identity -e private-zone -s gns-private $options
69
70 # 'fs-sks' default ego for gnunet-fs-gtk namespace operations
71 gnunet-identity -e sks-zone -s fs-sks $options
72
73 # Get the public keys as strings (so we can create PKEY records)
74 MASTER=`gnunet-identity -d $options | grep master-zone | awk '{print $3}'`
75 PRIVATE=`gnunet-identity -d $options | grep private-zone | awk '{print $3}'`
76 PIN=DWJASSPE33MRN8T6Q0PENRNBTQY0E6ZYGTRCDP5DGPBF2CRJMJEG
77
78 # Link private zone into master zone
79 if (gnunet-namestore -z master-zone -D -n private -t PKEY | grep "PKEY: $PRIVATE" 1>/dev/null)
80 then
81   echo "Private zone link exists, skipping"
82 else
83   gnunet-namestore -z master-zone -a -e never -n private -p -t PKEY -V $PRIVATE $options
84 fi
85
86 # Link GNUnet's FCFS zone into master zone under label "pin"
87 if (gnunet-namestore -z master-zone -D -n pin -t PKEY | grep "PKEY: $PIN" 1>/dev/null)
88 then
89   echo "Pin zone link exists, skipping"
90 else
91   gnunet-namestore -z master-zone -a -e never -n pin -p -t PKEY -V $PIN $options
92 fi