From: Christian Grothoff Date: Mon, 23 Dec 2013 23:04:33 +0000 (+0000) Subject: -fixes X-Git-Tag: initial-import-from-subversion-38251~5186 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a55338d37e3f3ef1b3e5d182d58bbd9965f2660b;p=oweals%2Fgnunet.git -fixes --- diff --git a/contrib/gnunet-gns-import.sh b/contrib/gnunet-gns-import.sh index abe1c5936..0ad3ab1d2 100755 --- a/contrib/gnunet-gns-import.sh +++ b/contrib/gnunet-gns-import.sh @@ -62,23 +62,23 @@ PRIVATE=`gnunet-identity -d $options | grep private-zone | awk '{print $3}'` PIN=72QC35CO20UJN1E91KPJFNT9TG4CLKAPB4VK9S3Q758S9MLBRKOG # Link short and private zones into master zone -if (gnunet-namestore -z master-zone -D -n private -t PKEY | grep "PKEY: $PRIVATE" &>/dev/null) +if (gnunet-namestore -z master-zone -D -n private -t PKEY | grep "PKEY: $PRIVATE" 1>/dev/null) then - : + echo "Private zone link exists, skipping" else gnunet-namestore -z master-zone -a -e never -n private -p -t PKEY -V $PRIVATE $options fi -if (gnunet-namestore -z master-zone -D -n short -t PKEY | grep "PKEY: $SHORT" &>/dev/null) +if (gnunet-namestore -z master-zone -D -n short -t PKEY | grep "PKEY: $SHORT" 1>/dev/null) then - : + echo "Shorten zone link exists, skipping" else gnunet-namestore -z master-zone -a -e never -n short -p -t PKEY -V $SHORT $options fi # Link GNUnet's FCFS zone into master zone under label "pin" -if (gnunet-namestore -z master-zone -D -n pin -t PKEY | grep "PKEY: $PIN" &>/dev/null) +if (gnunet-namestore -z master-zone -D -n pin -t PKEY | grep "PKEY: $PIN" 1>/dev/null) then - : + echo "Pin zone link exists, skipping" else gnunet-namestore -z master-zone -a -e never -n pin -p -t PKEY -V $PIN $options fi