diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 13:00:40 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 13:00:40 -0500 |
commit | 2fdc594c54a592070de1336d8b9a8e8eb97e974b (patch) | |
tree | c42ec31fc1deb05c0c0eaf23df6f243093f3aeaf | |
parent | 6d6377aeb10d453e51a3e8f5863f24db40ae3a30 (diff) |
Add warning message about potential loss of data when not manually setting up the LFS partition, filesystem and mounting.
-rwxr-xr-x | lfs.sh | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -18,7 +18,15 @@ source functions.sh #source versioncheck.sh printf "%b" "\n\n\n${CYN}BUILDING ${YLW}${LFS_VER} $(uname -m)${CYN} at \ -${IWHT}${LFS}${CYN} on ${IWHT}${LFS_DISK}${LFS_PART}${RST}\n\n\n" +${IWHT}${LFS}${CYN} on ${IWHT}${LFS_DISK}${LFS_PART}${RST}\n\n" + +printf "%b" "${IRED}*** ${IREDB}WARNING${RST} \ +${IWHT}POTENTIAL DATA LOSS \ +${IREDB}WARNING ${RST}${IRED}***${GRN}\n${RST}" + +printf "%b" "${GRN}Automatic creation of partition(s), filesystem(s) \n\ +and mounting will occur unless manually performed\n\ +before continuing.${RST}\n\n\n" # Continue or Abort printf "%b" "${IGRN}CONTINUE ${IWHTB}(C)${RST} / ${IRED}ABORT ${IWHTB}(OTHER)${RST}\n" |