chmod +x all local/bin

This commit is contained in:
Lukáš Plevač 2021-02-12 12:59:32 +00:00 committed by GitHub
parent 4a8ee6d64a
commit cf65000801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,6 @@ exec 3>&-;
##
echo "starting install"
timedatectl set-ntp true
#update keys
echo "update keys"
@ -88,8 +87,10 @@ echo "arch-choot"
arch-chroot /mnt <<EOF
echo "set time zone"
timedatectl set-timezone $timezone
hwclock --systohc --utc
timedatectl set-timezone $timezone
timedatectl set-ntp true
locale-gen
echo "set host name"
@ -111,6 +112,9 @@ pacman -Syy
sed -r '/^#/d' /packages.x86_64 | pacman --noconfirm -S -
rm -f /packages.x86_64
#chmod +x all local/bin
chmod +x /usr/local/bin/*
#user create
groupadd sudo
useradd -m -G sudo "$username"