aboutsummaryrefslogtreecommitdiff
path: root/contrib/gnunet-gns-import.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-05 16:51:04 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-05 16:51:04 +0000
commit08b77389d8aac354da74e53412099f7fb60caa28 (patch)
tree4c6ff56ee13b6f5425bfd128f024e8f4f8a20e64 /contrib/gnunet-gns-import.sh
parent39c0c0fdef116610245c43e825ce9ebeff11234d (diff)
downloadgnunet-08b77389d8aac354da74e53412099f7fb60caa28.tar.gz
gnunet-08b77389d8aac354da74e53412099f7fb60caa28.zip
removing gnunet-pseudonym, we're using GNS/gnunet-identity instead in the future
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}`