add support for interfaces with ipv6, but no ipv4 (patch from #2695)
SVN-Revision: 9545
This commit is contained in:
parent
3e64dbb862
commit
071a907015
1 changed files with 2 additions and 2 deletions
|
@ -146,9 +146,9 @@ setup_interface() {
|
||||||
static)
|
static)
|
||||||
config_get ipaddr "$config" ipaddr
|
config_get ipaddr "$config" ipaddr
|
||||||
config_get netmask "$config" netmask
|
config_get netmask "$config" netmask
|
||||||
[ -z "$ipaddr" -o -z "$netmask" ] && return 1
|
|
||||||
|
|
||||||
config_get ip6addr "$config" ip6addr
|
config_get ip6addr "$config" ip6addr
|
||||||
|
[ -z "$ipaddr" -o -z "$netmask" ] && [ -z "$ip6addr" ] && return 1
|
||||||
|
|
||||||
config_get gateway "$config" gateway
|
config_get gateway "$config" gateway
|
||||||
config_get dns "$config" dns
|
config_get dns "$config" dns
|
||||||
config_get bcast "$config" broadcast
|
config_get bcast "$config" broadcast
|
||||||
|
|
Loading…
Reference in a new issue