diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 10:02:31 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-30 10:02:31 -0500 |
commit | 367d99faff99b8b4143118ff42e9e1921a2d7ad0 (patch) | |
tree | 489223135dff86fbe63098073ba4aff362fd4e81 | |
parent | 345aec40b7a7bfdbd13c13b5aeea833f849360ef (diff) |
Use essential for essential files and symlinks.
-rw-r--r-- | insidechroot.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 9bd96a0..91f75c9 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 |