aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/dhcp_if/convert2ipconf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/var_service/dhcp_if/convert2ipconf')
-rwxr-xr-xexamples/var_service/dhcp_if/convert2ipconf22
1 files changed, 5 insertions, 17 deletions
diff --git a/examples/var_service/dhcp_if/convert2ipconf b/examples/var_service/dhcp_if/convert2ipconf
index cee085463..114ab0555 100755
--- a/examples/var_service/dhcp_if/convert2ipconf
+++ b/examples/var_service/dhcp_if/convert2ipconf
@@ -19,24 +19,12 @@
#let cfg=cfg+1
#if[$cfg]=...; ip[$cfg]=...; ipmask[$cfg]=.../...; gw[$cfg]=...; net[$cfg]=... dns[$cfg]=...
-exec >"$0.out" 2>&1
+exec >/dev/null
+#exec >"$0.out" # debug
+exec 2>&1
test "$interface" || exit 1
-test -f "$1" || exit 1
-
-# Unsafe, and does not handle values with spaces:
-#. "./$1" || exit 1
-# Safe(r) parsing:
-sq="'"
-while read line; do
- #echo "line: $line"
- # Skip empty lines and lines with single quotes
- test "${line##*$sq*}" || continue
- var="${line%%=*}"
- val="${line#*=}"
- #echo "var:$var val:'$val'"
- eval "$var='$val'"
-done <"$1"
+test "$ip" || exit 1
{
echo "let cfg=cfg+1"
@@ -50,4 +38,4 @@ test "$dns" && echo "dns[\$cfg]='$dns'"
# which subnet(s) is/are available thru advertised router
# Assume 0/0
echo "net[\$cfg]='0/0'"
-} >"$2"
+} >"$1"