diff --git a/dracut-functions.sh b/dracut-functions.sh index 63b6c892..8503c22f 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -783,13 +783,29 @@ btrfs_devs() { iface_for_remote_addr() { # shellcheck disable=SC2046 set -- $(ip -o route get to "$1") - echo "$3" + while [ $# -gt 0 ]; do + case $1 in + dev) + echo "$2" + return + ;; + esac + shift + done } local_addr_for_remote_addr() { # shellcheck disable=SC2046 set -- $(ip -o route get to "$1") - echo "$5" + while [ $# -gt 0 ]; do + case $1 in + src) + echo "$2" + return + ;; + esac + shift + done } peer_for_addr() {