Add networking check fix for VMs from HoaS.
This commit is contained in:
parent
6b8d0b7e1d
commit
21478baf33
@ -5,7 +5,7 @@
|
|||||||
# Some ideas and code reworked from other resources
|
# Some ideas and code reworked from other resources
|
||||||
# AIF, Calamares, and the Arch Wiki.. Credit where credit is due
|
# AIF, Calamares, and the Arch Wiki.. Credit where credit is due
|
||||||
|
|
||||||
VER=2.1.17
|
VER=2.1.18
|
||||||
|
|
||||||
# default values {
|
# default values {
|
||||||
|
|
||||||
@ -401,7 +401,7 @@ select_keymap()
|
|||||||
by Belarusian az Azerbaijani mk Macedonian kh Khmer epo Esperanto \
|
by Belarusian az Azerbaijani mk Macedonian kh Khmer epo Esperanto \
|
||||||
me Montenegrin || return 1
|
me Montenegrin || return 1
|
||||||
|
|
||||||
if [[ $CMAPS == *"$KEYMAP"* ]]; then
|
if [[ $CMAPS == *"$KEYMAP "* ]]; then
|
||||||
CMAP="$KEYMAP"
|
CMAP="$KEYMAP"
|
||||||
else
|
else
|
||||||
dlg CMAP menu "Console Keymap" "$_vconsole" $CMAPS || return 1
|
dlg CMAP menu "Console Keymap" "$_vconsole" $CMAPS || return 1
|
||||||
@ -2510,7 +2510,11 @@ umount_dir()
|
|||||||
chk_connect()
|
chk_connect()
|
||||||
{
|
{
|
||||||
msg "Network Connect" "\nVerifying network connection\n" 0
|
msg "Network Connect" "\nVerifying network connection\n" 0
|
||||||
ping -qc1 'archlinux.org' > /dev/null 2>&1
|
if [[ $VM ]] && hash nm-online > /dev/null 2>&1; then
|
||||||
|
nm-online > /dev/null 2>&1
|
||||||
|
else
|
||||||
|
ping -qc1 'archlinux.org' > /dev/null 2>&1
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
net_connect()
|
net_connect()
|
||||||
|
Reference in New Issue
Block a user