X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fgns%2Ftest_gnunet_gns.sh;h=749d80b84467a5d57e74ff888ab4cc00a7243cd0;hb=ecfab268bb34efb1305bf5b7894db47cd916a6a7;hp=ccec73340de9d5588dc524caceff2cbf700866e6;hpb=37566e067645bf881b170796251a14d8d20202b8;p=oweals%2Fgnunet.git diff --git a/src/gns/test_gnunet_gns.sh b/src/gns/test_gnunet_gns.sh index ccec73340..749d80b84 100755 --- a/src/gns/test_gnunet_gns.sh +++ b/src/gns/test_gnunet_gns.sh @@ -2,9 +2,14 @@ LOCATION=$(which gnunet-config) if [ -z $LOCATION ] +then + LOCATION="gnunet-config" +fi +$LOCATION --version +if test $? != 0 then echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" - exit 1 + exit 77 fi trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT @@ -12,7 +17,7 @@ ME=`whoami` if [ "$ME" != "root" ] then echo "This test only works if run as root. Skipping." - exit 0 + exit 77 fi export PATH=".:$PATH" gnunet-service-gns -c gns.conf &