aboutsummaryrefslogtreecommitdiff
path: root/contrib/gnunet-gns-import.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gnunet-gns-import.sh')
-rwxr-xr-xcontrib/gnunet-gns-import.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/gnunet-gns-import.sh b/contrib/gnunet-gns-import.sh
index eb1a4defa..d1edbd432 100755
--- a/contrib/gnunet-gns-import.sh
+++ b/contrib/gnunet-gns-import.sh
@@ -7,11 +7,16 @@ gnunet-identity -C master-zone
7gnunet-identity -C short-zone 7gnunet-identity -C short-zone
8gnunet-identity -C private-zone 8gnunet-identity -C private-zone
9 9
10# Additionally, we create the FS SKS zone
11gnunet-identity -C sks-zone
12
10# Integrate those with the respective subsystems. 13# Integrate those with the respective subsystems.
11gnunet-identity -e short-zone -s gns-short 14gnunet-identity -e short-zone -s gns-short
12gnunet-identity -e master-zone -s gns-master 15gnunet-identity -e master-zone -s gns-master
13gnunet-identity -e private-zone -s gns-private 16gnunet-identity -e private-zone -s gns-private
17gnunet-identity -e sks-zone -s fs-sks
14 18
19# Get the public keys as strings (so we can create PKEY records)
15MASTER=`gnunet-identity -d | grep master-zone | awk '{print $3}` 20MASTER=`gnunet-identity -d | grep master-zone | awk '{print $3}`
16SHORT=`gnunet-identity -d | grep short-zone | awk '{print $3}` 21SHORT=`gnunet-identity -d | grep short-zone | awk '{print $3}`
17PRIVATE=`gnunet-identity -d | grep private-zone | awk '{print $3}` 22PRIVATE=`gnunet-identity -d | grep private-zone | awk '{print $3}`