浏览代码

safing chroot.sh

Noah 4 年之前
父节点
当前提交
994c6ab60e
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      chroot.sh

+ 7 - 0
chroot.sh

@@ -5,21 +5,28 @@
 # do this if you exactly understand EVERY SINGLE
 # LINE of this bash script. You'll thank me later.
 
+read -p "Press any key to continue"
 passwd
+read -p "Press any key to continue"
 
 TZuser=$(cat tzfinal.tmp)
 
 ln -sf /usr/share/zoneinfo/$TZuser /etc/localtime
+read -p "Press any key to continue"
 
 hwclock --systohc
+read -p "Press any key to continue"
 
 echo "LANG=en_GB.UTF-8" >> /etc/locale.conf
 echo "en_GB.UTF-8 UTF-8" >> /etc/locale.gen
 locale-gen
+read -p "Press any key to continue"
 
 pacman --noconfirm --needed -S networkmanager
 systemctl enable NetworkManager
 systemctl start NetworkManager
+read -p "Press any key to continue"
 
 DRIVE=$(cat drive)
 pacman --noconfirm --needed -S grub && grub-install --target=i386-pc /dev/${DRIVE} && grub-mkconfig -o /boot/grub/grub.cfg
+read -p "Press any key to continue"