aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chapter6/cleanup.sh2
-rw-r--r--mountvirtfs.sh4
2 files changed, 4 insertions, 2 deletions
diff --git a/chapter6/cleanup.sh b/chapter6/cleanup.sh
index 1a82633..2db4067 100644
--- a/chapter6/cleanup.sh
+++ b/chapter6/cleanup.sh
@@ -1,7 +1,7 @@
#!/bin/bash
if [ -f "${LFS}/sources/chapter6/cleanup" ]; then
- printf "%b" " ${IGRN}Cleanup already performed${RST}"
+ printf "%b" " ${IGRN}Cleanup already performed${RST}\n"
else
printf "%b" "${GRN}Cleaning up ${YLW}${LFS}${RST}... "
diff --git a/mountvirtfs.sh b/mountvirtfs.sh
index 4c016e5..ec0262f 100644
--- a/mountvirtfs.sh
+++ b/mountvirtfs.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-printf "%b" "${GRN}Mounting virtual kernel filesystems...${RST}\n"
+printf "%b" "${GRN}Mounting virtual kernel filesystems${RST}... "
if ! mountpoint "${LFS}"/dev >/dev/null 2>&1; then
sudo mount --bind /dev "${LFS}"/dev
else
@@ -30,3 +30,5 @@ fi
if [[ -h "${LFS}"/dev/shm ]]; then
sudo mkdir -pv "${LFS}"/"$(readlink "${LFS}"/dev/shm)"
fi
+
+printf "%b" "${IGRN}OK${RST}\n"