From: Martin Schanzenbach Date: Wed, 25 Sep 2013 12:16:42 +0000 (+0000) Subject: -mx test, mx type not recognized X-Git-Tag: initial-import-from-subversion-38251~7125 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=57a1b85dce167d740f50f3078e47d5a1ac51e5d8;p=oweals%2Fgnunet.git -mx test, mx type not recognized --- diff --git a/src/gns/test_gns_mx_lookup.sh b/src/gns/test_gns_mx_lookup.sh new file mode 100755 index 000000000..545d21d00 --- /dev/null +++ b/src/gns/test_gns_mx_lookup.sh @@ -0,0 +1,19 @@ +#!/bin/bash +trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT +rm -r `gnunet-config -c test_gns_lookup.conf -s PATHS -o SERVICEHOME` +TEST_MX="mail.gnunet" +gnunet-arm -s -c test_gns_lookup.conf +gnunet-identity -C testego -c test_gns_lookup.conf +gnunet-namestore -p -z testego -a -n gnunet -t MX -V $TEST_MX -e never -c test_gns_lookup.conf +RES_MX=$(timeout 5 gnunet-gns --raw -z testego -u www.gnu -t MX -c test_gns_lookup.conf) +gnunet-namestore -z testego -d -n www -t MX -V $TEST_MX -e never -c test_gns_lookup.conf +gnunet-identity -D testego -c test_gns_lookup.conf +gnunet-arm -e -c test_gns_lookup.conf + +if [ "$RES_MX" == "$TEST_MX" ] +then + exit 0 +else + echo "Failed to resolve to proper IP, got $RES_MX." + exit 1 +fi