Simplify password handling, better naming for a few functions

This commit is contained in:
natemaia
2018-12-13 02:26:00 -08:00
parent 04c4441fc5
commit ba91ed8b79
10 changed files with 170 additions and 163 deletions

View File

@ -10,9 +10,9 @@
# immutable globals
readonly VER="1.7.25" # Installer version
readonly VER="1.7.27" # Installer version
readonly DIST="ArchLabs" # Linux distributor
readonly MNT="/mnt/install" # Install mountpoint
readonly MNT="/mnt" # Install mountpoint
readonly ERR="/tmp/errlog" # Built-in error log
readonly DBG="/tmp/debuglog" # Built-in error log
@ -53,9 +53,9 @@ main()
2) partition || SELECTED=1 ;;
3) luks_menu || SELECTED=2 ;;
4) lvm_menu || SELECTED=3 ;;
5) mount_install_partitions || SELECTED=4 ;;
6) configure_system_settings || SELECTED=5 ;;
7) display_system_settings ;;
5) select_partitions || SELECTED=4 ;;
6) configure_settings || SELECTED=5 ;;
7) display_settings ;;
8) install ;;
*) yesno "$_CloseInst" "$_CloseInstBody" "Exit" "Back" && die
esac