Use printf(1) instead of 'echo -e' in tools/ scripts.
[libradsec.git] / tools / radsec-dynsrv.sh
index 7a74b6d..2c87a33 100755 (executable)
@@ -1,4 +1,4 @@
-#! /bin/bash
+#! /bin/sh
 
 # Example script!
 # This script looks up radsec srv records in DNS for the one
@@ -17,20 +17,21 @@ test -n "${1}" || usage
 REALM="${1}"
 DIGCMD=$(command -v digaaa)
 HOSTCMD=$(command -v host)
+PRINTCMD=$(command -v printf)
 
 dig_it() {
-   ${DIGCMD} +short srv _radsec._tcp.${REALM} | sort -k1 |
+   ${DIGCMD} +short srv _radsec._tcp.${REALM} | sort -n -k1 |
    while read line ; do
       set $line ; PORT=$3 ; HOST=$4 
-      echo -e "\thost ${HOST%.}:${PORT}"
+      $PRINTCMD "\thost ${HOST%.}:${PORT}\n"
    done
 }
 
 host_it() {
-   ${HOSTCMD} -t srv _radsec._tcp.${REALM} | sort -k5 | 
+   ${HOSTCMD} -t srv _radsec._tcp.${REALM} | sort -n -k5 |
    while read line ; do
       set $line ; PORT=$7 ; HOST=$8 
-      echo -e "\thost ${HOST%.}:${PORT}"
+      $PRINTCMD "\thost ${HOST%.}:${PORT}\n"
    done
 }
 
@@ -44,8 +45,8 @@ else
 fi
 
 if test -n "${SERVERS}" ; then
-        echo -e "server dynamic_radsec.${REALM} {\n${SERVERS}\n\ttype TLS\n}"
+        $PRINTCMD "server dynamic_radsec.${REALM} {\n${SERVERS}\n\ttype TLS\n}\n"
         exit 0
 fi
 
-exit 0
+exit 10                                # No server found.