From 89b1f1e2805a93e4c334dd4c8551d82075489e2b Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 13:31:48 -0500 Subject: Cleanup information messages. --- lfs.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index 5a273c1..0203a45 100755 --- a/lfs.sh +++ b/lfs.sh @@ -45,7 +45,7 @@ else fi # Create LFS directory if it doesn't exist -printf "%b" "${GRN}Creating LFS directory at ${YLW}${LFS}${GRN}... ${RST}" +printf "%b" "${GRN}Creating LFS directory at ${YLW}${LFS}${GRN}${RST}... " if [[ -d "${LFS}" ]]; then printf "%b" "${IGRN}EXISTS${RST}\n" else @@ -91,7 +91,7 @@ esac # Copy scripts and csv files to LFS sources target printf "%b" "${GRN}Copying required files to ${YLW}${LFS}/sources \ -${GRN}target directory... ${RST}" +${GRN}target directory${RST}... " if ! cp -rf ./*.sh chapter* ./*.csv "${LFS}/sources"; then printf "%b" "${IRED}FAILED!${RST}\n" @@ -132,7 +132,8 @@ for package in m4 ncurses bash coreutils diffutils file findutils gawk grep gzip fi done -printf "%b" "\n${YLW}Chapter 6 ${GRN}cleanup and backup${RST}\n" +printf "%b" "\n${IWHT}======= ${IYLW}Chapter 6 ${IGRN}Cleanup and Backup \ +${IWHT}=======${RST}\n" source chapter6/cleanup.sh source chapter6/backup.sh @@ -140,10 +141,10 @@ source chapter6/backup.sh chmod ugo+x preparechroot.sh chmod ugo+x insidechroot.sh -printf "%b" "\n${CYN}PREPARING ${RED}CHROOT${CYN} ENVIRONMENT...${RST}\n" +printf "%b" "\n${CYN}PREPARING ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" sudo ./preparechroot.sh "${LFS}" -printf "%b" "\n${CYN}ENTERING ${RED}CHROOT${CYN} ENVIRONMENT...${RST}\n" +printf "%b" "\n${CYN}ENTERING ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" sleep 3 sudo chroot "${LFS}" /usr/bin/env \ @@ -156,4 +157,4 @@ sudo chroot "${LFS}" /usr/bin/env \ TESTERUID="$(id -u)" \ /bin/bash --login +h -c "/sources/insidechroot.sh 7" -printf "%b" "\n${CYN}EXITED ${RED}CHROOT${CYN} ENVIRONMENT...${RST}\n" +printf "%b" "\n${CYN}EXITED ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" -- cgit v1.2.3-54-g00ecf