installer/scripts/setup.sh
2024-12-12 20:16:13 -08:00

19 lines
305 B
Bash
Executable file

#!/bin/bash
SCRIPT_ROOT=`dirname "${0}"`
#if [ -f "${SCRIPT_ROOT}/install_started" ];then
# exit 1
#else
# touch "${SCRIPT_ROOT}/install_started"
#fi
source ${SCRIPT_ROOT}/lib/functions
source ${SCRIPT_ROOT}/lib/partition
source ${SCRIPT_ROOT}/lib/helpers
prepare_install
menu_helper
finalize
exit