Fix: bad return in select_login causing packages never to be added.

This commit is contained in:
natemaia 2020-03-01 22:50:51 -08:00
parent cd27c3c70b
commit 904cd16a5b

View File

@ -8,7 +8,7 @@
# check for syntax errors # check for syntax errors
# set -n # set -n
VER=2.1.15 VER=2.1.16
# default values { # default values {
@ -298,6 +298,7 @@ select_login()
yesno "Autologin" "$(sed "s|USER|$NEWUSER|g; s|RC|$LOGINRC|g" <<< "$_autologin")" && AUTOLOGIN=true yesno "Autologin" "$(sed "s|USER|$NEWUSER|g; s|RC|$LOGINRC|g" <<< "$_autologin")" && AUTOLOGIN=true
;; ;;
esac esac
return 0
} }
select_config() select_config()
@ -438,6 +439,7 @@ select_bootldr()
"syslinux" "A collection of boot loaders for booting drives, CDs, or over the network (no chainloading support)" || return 1 "syslinux" "A collection of boot loaders for booting drives, CDs, or over the network (no chainloading support)" || return 1
fi fi
setup_${BOOTLDR} setup_${BOOTLDR}
return 0
} }
select_sessions() select_sessions()