diff options
Diffstat (limited to 'insidechroot.sh')
-rw-r--r-- | insidechroot.sh | 8 |
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 |