# $Id$ system_setup() { ${INSTALLER_DIR}/include/prepare_auth.sh &>> ${INSTALLER_LOG} echo 25 ${INSTALLER_DIR}/include/prepare_networking.sh &>> ${INSTALLER_LOG} echo 50 ${INSTALLER_DIR}/include/prepare_fstab.sh &>> ${INSTALLER_LOG} echo 75 ${INSTALLER_DIR}/include/prepare_initrd.sh &>> ${INSTALLER_LOG} echo 100 } main_install() { ${INSTALLER_DIR}/include/prepare_disks.sh --format --ncurses | gauge "Installing" "Formating disks..." 10 70 ${INSTALLER_DIR}/include/prepare_disks.sh --mount &>> ${INSTALLER_LOG} ${INSTALLER_DIR}/include/bootstrap-wrapper.sh --ncurses | gauge "Installing" "Installing system..." 10 70 system_setup | gauge "Installing" "Setup system settings..." 10 70 ${INSTALLER_DIR}/include/prepare_bootloader.sh | gauge "Installing" "Installing Bootloader..." 10 70 ${INSTALLER_DIR}/include/prepare_disks.sh --umount &>> ${INSTALLER_LOG} }