commit b34b975cacdde7aed02f1571b0369b59f6a99888 parent 69b239273fd0469d3dd70139b0aa24aa13a99f9a Author: mrgrouse <bdmfegys@duck.com> Date: Tue, 12 Nov 2024 19:29:43 -0500 artix-install.sh: add dhcpcd dependency, add comments about the use of the script about this change and notify user about enabling services after install is completed Diffstat:
| M | artix-install.sh | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/artix-install.sh b/artix-install.sh @@ -74,7 +74,8 @@ mount $boot_drive $rtmnt/boot # mount unencrypted boot drive in /boot of install get_var "Which kernel would you like to install:" kernel # strap main system w packages -basestrap /mnt base base-devel $kernel $kernel-headers iwd-$init +# this package list is for desktop systems that connect wirelessly, edit package list or make alternate if you wish +basestrap /mnt base base-devel $kernel $kernel-headers iwd-$init dhcpcd-$init # generate fstab fstabgen -U $rtmnt >> $rtmnt/etc/fstab @@ -109,3 +110,4 @@ initramfs_checker mkinitcpio || initramfs_checker dracut [ initramfsgen == dracut ] && dracut --regenerate-all --force [ initramfsgen == mkinitcpio ] && mkinitcpio -P +echo "You have to enable services if they weren't already enabled by pacman hooks. Default service packages installed via this script are iwd and dhcpcd."