diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 13:31:48 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 13:31:48 -0500 |
commit | 89b1f1e2805a93e4c334dd4c8551d82075489e2b (patch) | |
tree | 9f5f816f8c68d63750ee8dcfe4177fc37ec062ef /chapter6 | |
parent | bc2ffe5e6633538e5e34e1867b3a16c844c8b5fe (diff) |
Cleanup information messages.
Diffstat (limited to 'chapter6')
-rw-r--r-- | chapter6/backup.sh | 2 | ||||
-rw-r--r-- | chapter6/cleanup.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chapter6/backup.sh b/chapter6/backup.sh index 615aaf7..73e3b3d 100644 --- a/chapter6/backup.sh +++ b/chapter6/backup.sh @@ -4,7 +4,7 @@ file="${LFS_VER}-ch6-backup.tar.xz" directories=(bin etc lib lib64 sbin tools usr var) if [ -f "${LFS}/sources/chapter6/backup" ]; then - printf "%b" " ${IGRN}Backup found. Remove manually to backup again.${RST}\n" + printf "%b" " ${IGRN}Backup previously completed${RST}\n" else echo -ne "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${file}${RST}... " diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh index 9bd8fee..29b133f 100644 --- a/chapter6/cleanup.sh +++ b/chapter6/cleanup.sh @@ -1,7 +1,7 @@ #!/bin/bash if [ -f "${LFS}/sources/chapter6/cleanup" ]; then - echo -e " ${IGRN}Cleanup already performed.${RST}" + echo -e " ${IGRN}Cleanup already performed${RST}" else echo -ne "${GRN}Cleaning up ${YLW}${LFS}${RST}... " |