pick up `ifconfig` and `ip` from PATH

Apparently there are systems on which these tools are not in /sbin.
Fixes #472.
pull/479/head
romkatv 5 years ago
parent d716875918
commit 17d3dc78fe

@ -4569,8 +4569,8 @@ function _p9k_prompt_net_iface_compute() {
function _p9k_prompt_net_iface_async() { function _p9k_prompt_net_iface_async() {
local iface ip line var local iface ip line var
typeset -a iface2ip typeset -a iface2ip
if [[ -x /sbin/ifconfig ]]; then if (( $+commands[ifconfig] )); then
for line in ${(f)"$(/sbin/ifconfig 2>/dev/null)"}; do for line in ${(f)"$(command ifconfig 2>/dev/null)"}; do
if [[ $line == (#b)([^[:space:]]##):[[:space:]]##flags=(<->)'<'* ]]; then if [[ $line == (#b)([^[:space:]]##):[[:space:]]##flags=(<->)'<'* ]]; then
[[ $match[2] == *[13579] ]] && iface=$match[1] || iface= [[ $match[2] == *[13579] ]] && iface=$match[1] || iface=
elif [[ -n $iface && $line == (#b)[[:space:]]##inet[[:space:]]##([0-9.]##)* ]]; then elif [[ -n $iface && $line == (#b)[[:space:]]##inet[[:space:]]##([0-9.]##)* ]]; then
@ -4578,8 +4578,8 @@ function _p9k_prompt_net_iface_async() {
iface= iface=
fi fi
done done
elif [[ -x /sbin/ip ]]; then elif (( $+commands[ip] )); then
for line in ${(f)"$(/sbin/ip -4 a show 2>/dev/null)"}; do for line in ${(f)"$(command ip -4 a show 2>/dev/null)"}; do
if [[ $line == (#b)<->:[[:space:]]##([^:]##):[[:space:]]##\<([^\>]#)\>* ]]; then if [[ $line == (#b)<->:[[:space:]]##([^:]##):[[:space:]]##\<([^\>]#)\>* ]]; then
[[ ,$match[2], == *,UP,* ]] && iface=$match[1] || iface= [[ ,$match[2], == *,UP,* ]] && iface=$match[1] || iface=
elif [[ -n $iface && $line == (#b)[[:space:]]##inet[[:space:]]##([0-9.]##)* ]]; then elif [[ -n $iface && $line == (#b)[[:space:]]##inet[[:space:]]##([0-9.]##)* ]]; then

Loading…
Cancel
Save