Merge "dhcp-all-interfaces: correct ifquery return stmt"

This commit is contained in:
Jenkins 2014-03-27 18:01:52 +00:00 committed by Gerrit Code Review
commit eacdb2a4a5

View File

@ -58,12 +58,11 @@ function config_exists() {
if [ "$CONF_TYPE" == "netscripts" ]; then
if [ -f "/etc/sysconfig/network-scripts/ifcfg-$interface" ]; then
return 0
else
return 1
fi
else
return ifquery $interface >/dev/null 2>&1
ifquery $interface >/dev/null 2>&1 && return 0
fi
return 1
}
function inspect_interface() {