New example of a service: examples/var_service/zcip_if
Zeroconf for IPv4 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
22
examples/var_service/zcip_if/convert2ipconf
Executable file
22
examples/var_service/zcip_if/convert2ipconf
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
# convert:
|
||||
|
||||
#interface=eth1
|
||||
#ip=169.254.x.y
|
||||
|
||||
#let cfg=cfg+1
|
||||
#if[$cfg]=...; ip[$cfg]=...; ipmask[$cfg]=.../...; gw[$cfg]=...; net[$cfg]=... dns[$cfg]=...
|
||||
|
||||
exec >/dev/null
|
||||
#exec >"$0.out" # debug
|
||||
exec 2>&1
|
||||
|
||||
test "$interface" || exit 1
|
||||
test "$ip" || exit 1
|
||||
|
||||
{
|
||||
echo "let cfg=cfg+1"
|
||||
test "$interface" && echo "if[\$cfg]='$interface'"
|
||||
test "$ip" && echo "ip[\$cfg]='$ip'"
|
||||
test "$ip" && echo "ipmask[\$cfg]='$ip/16'"
|
||||
} >"$1"
|
Reference in New Issue
Block a user