diff --git a/usr/lib/archboot/installer/base.sh b/usr/lib/archboot/installer/base.sh index 4824a1ebe..2ee1cd14d 100644 --- a/usr/lib/archboot/installer/base.sh +++ b/usr/lib/archboot/installer/base.sh @@ -130,7 +130,7 @@ _select_source() { _getsource || return 1 else if [[ ${_S_NET} -eq 0 ]]; then - check_nework || return 1 + _check_network || return 1 fi [[ "${_RUNNING_ARCH}" == "x86_64" ]] && dotesting _getsource || return 1 diff --git a/usr/lib/archboot/installer/network.sh b/usr/lib/archboot/installer/network.sh index c022d3e54..7b91b6ada 100644 --- a/usr/lib/archboot/installer/network.sh +++ b/usr/lib/archboot/installer/network.sh @@ -6,7 +6,7 @@ _net_interfaces() { } # check for already active profile -_check_nework() { +_check_network() { [[ "${_S_NET}" == "1" ]] || _donetwork }