diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-05 17:59:25 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-05 17:59:25 +0200 |
commit | 53cafc52060a478dee5a6a6c2c394a0bdc7d33d8 (patch) | |
tree | 4cd88104630e693a4cbd19fb4aca12c5499aa366 /cryptinstall | |
parent | 2310ee2f5451a7227457fdff4224feb3b3c1cac6 (diff) |
Seperate pacman -Sy
Fixes #2
Diffstat (limited to 'cryptinstall')
-rwxr-xr-x | cryptinstall | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cryptinstall b/cryptinstall index e8038be..614dab5 100755 --- a/cryptinstall +++ b/cryptinstall @@ -7,7 +7,8 @@ if [ "${UID}" != "0" ]; then exit 1 fi -pacman -Sy --noconfirm parted +pacman -Sy +pacman -S --noconfirm parted # # Full Disk Encryption @@ -41,7 +42,7 @@ rc-service ntpd start basestrap /mnt base base-devel openrc elogind-openrc basestrap /mnt linux linux-firmware -artix-chroot /mnt bash -c 'curl https://raw.githubusercontent.com/HimbeerserverDE/artixinstall/main/mkcryptartix | bash' +artix-chroot /mnt bash -c 'curl -fsSL https://raw.githubusercontent.com/HimbeerserverDE/artixinstall/main/mkcryptartix | bash' fstabgen -U /mnt >> /mnt/etc/fstab |