Denys Vlasenko | d32a1a4 | 2015-10-24 05:30:58 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # convert: |
| 3 | |
| 4 | #interface=eth1 |
| 5 | #ip=169.254.x.y |
| 6 | |
Denys Vlasenko | bf1866c | 2015-10-24 18:57:32 +0200 | [diff] [blame] | 7 | # into: |
| 8 | |
Denys Vlasenko | d32a1a4 | 2015-10-24 05:30:58 +0200 | [diff] [blame] | 9 | #let cfg=cfg+1 |
| 10 | #if[$cfg]=...; ip[$cfg]=...; ipmask[$cfg]=.../...; gw[$cfg]=...; net[$cfg]=... dns[$cfg]=... |
| 11 | |
| 12 | exec >/dev/null |
| 13 | #exec >"$0.out" # debug |
| 14 | exec 2>&1 |
| 15 | |
| 16 | test "$interface" || exit 1 |
| 17 | test "$ip" || exit 1 |
| 18 | |
| 19 | { |
| 20 | echo "let cfg=cfg+1" |
| 21 | test "$interface" && echo "if[\$cfg]='$interface'" |
| 22 | test "$ip" && echo "ip[\$cfg]='$ip'" |
| 23 | test "$ip" && echo "ipmask[\$cfg]='$ip/16'" |
| 24 | } >"$1" |