diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-04 19:37:29 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-04 19:37:29 +0100 |
commit | 2ed323dbc8687053a44c62a9226e6cd53acdfe3d (patch) | |
tree | 3dd274f4d4e91aac4728247d2b5919a0b0a4c4f8 | |
parent | Fix test (diff) | |
download | arch-installer-2ed323dbc8687053a44c62a9226e6cd53acdfe3d.tar.gz arch-installer-2ed323dbc8687053a44c62a9226e6cd53acdfe3d.tar.bz2 arch-installer-2ed323dbc8687053a44c62a9226e6cd53acdfe3d.tar.xz arch-installer-2ed323dbc8687053a44c62a9226e6cd53acdfe3d.tar.zst arch-installer-2ed323dbc8687053a44c62a9226e6cd53acdfe3d.zip |
Bug fix
-rwxr-xr-x | arch-installer.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch-installer.sh b/arch-installer.sh index 756f680..c6df581 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -476,11 +476,11 @@ jo_arch_chroot() { arch-chroot /mnt/arch hwclock --systohc arch-chroot /mnt/arch sed -i 's/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen arch-chroot /mnt/arch locale-gen - arch-chroot /mnt/arch echo "LANG=en_US.UTF-8" > /etc/locale.conf - arch-chroot /mnt/arch echo "$hstnm" > /etc/hostname - arch-chroot /mnt/arch echo "127.0.0.1 localhost" > /etc/hosts - arch-chroot /mnt/arch echo "::1 localhost" >> /etc/hosts - arch-chroot /mnt/arch echo "127.0.1.1 $hstnm.localdomain $hstnm" >> /etc/hosts + arch-chroot /mnt/arch echo "LANG=en_US.UTF-8" > /mnt/arch/etc/locale.conf + arch-chroot /mnt/arch echo "$hstnm" > /mnt/arch/etc/hostname + arch-chroot /mnt/arch echo "127.0.0.1 localhost" > /mnt/arch/etc/hosts + arch-chroot /mnt/arch echo "::1 localhost" >> /mnt/arch/etc/hosts + arch-chroot /mnt/arch echo "127.0.1.1 $hstnm.localdomain $hstnm" >> /mnt/arch/etc/hosts arch-chroot /mnt/arch passwd <<JO_PWD $rtpwd $rtpwd @@ -690,7 +690,7 @@ jo_fstab "IV. INSTALLING LINUX" dialog --title "V. CONFIGURING LINUX"\ --infobox "Finishing configuration"\ 3 30 -jo_arch_chroot 2>&1 +jo_arch_chroot >/dev/null 2>&1 sleep 4 dialog --title "WORK COMPLETE"\ --msgbox "\ |