aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-30 10:02:31 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-30 10:03:19 -0500
commit551d2c98ba564e695b6aff09f843861b326f1334 (patch)
tree82ea6e2ec1a33c0bc531c9e2a8e7e9f26f974d69
parent24ae50590b533a53cbc254854ec7159c5e02c804 (diff)
Use essential for essential files and symlinks.
-rw-r--r--insidechroot.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/insidechroot.sh b/insidechroot.sh
index 57951ab..6982e4b 100644
--- a/insidechroot.sh
+++ b/insidechroot.sh
@@ -88,8 +88,8 @@ if [ "${CHAPTER}" -eq 7 ]; then
fi
printf "%b" "${GRN}Creating essential files and symbolic links... ${RST}\n"
- if [ -f "/sources/symfiles" ]; then
- printf "%b" " ${GRN}Files and symbolic links already created.${RST}\n"
+ if [ -f "/sources/essential" ]; then
+ printf "%b" " ${GRN}Essential files and symbolic links already created.${RST}\n"
else
ln -sf /proc/self/mounts /etc/mtab
echo "127.0.0.1 localhost $(hostname)" > /etc/hosts
@@ -143,8 +143,8 @@ EOF
chmod 664 /var/log/lastlog
chmod 600 /var/log/btmp
- echo -e " ${GRN}Files and symlinks created.${RST}"
- touch /sources/symfiles
+ echo -e " ${GRN}Essential files and symlinks created.${RST}"
+ touch /sources/essential
fi
cd /sources || exit 1