#!/bin/bash CONFIGURATION="test_namestore_api.conf" trap "gnunet-arm -e -c $CONFIGURATION" SIGINT LOCATION=$(which gnunet-config) if [ -z $LOCATION ] then LOCATION="gnunet-config" fi $LOCATION --version 1> /dev/null if test $? != 0 then echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" exit 77 fi rm -rf `$LOCATION -c $CONFIGURATION -s PATHS -o GNUNET_HOME` TEST_RECORD_NAME="www3" TEST_RECORD_NAME2="www" TEST_IP="8.7.6.5" TEST_IP2="1.2.3.4" which timeout &> /dev/null && DO_TIMEOUT="timeout 5" function start_peer { gnunet-arm -s -c $CONFIGURATION gnunet-identity -C testego -c $CONFIGURATION gnunet-identity -C testego2 -c $CONFIGURATION } function stop_peer { gnunet-identity -D testego -c $CONFIGURATION gnunet-identity -D testego2 -c $CONFIGURATION gnunet-arm -e -c $CONFIGURATION } start_peer # Create a public record EGOKEY=`gnunet-identity -d | grep testego2 | cut -d' ' -f3` gnunet-namestore -a -c $CONFIGURATION -S <