Use existing temporary variable conn.
[radsecproxy.git] / dynsrv.sh
index be37601..d0810d6 100755 (executable)
--- a/dynsrv.sh
+++ b/dynsrv.sh
@@ -1,2 +1,9 @@
 #! /bin/sh
-host -t srv _radsec._tcp.$1|cut -d\  -f8
+srv=`host -t srv _radsec._tcp.$1`
+# should do exit 1 or something if host command fails
+host=`echo $srv|cut -d\  -f8`
+port=`echo $srv|cut -d\  -f7`
+echo "server $1-$host {"
+echo "    host $host"
+echo "    port $port"
+echo "}"