mirror of
https://github.com/classy-giraffe/easy-arch.git
synced 2025-11-17 19:40:55 +00:00
Merge pull request #1 from iSparsh/iSparsh-base-devel-1
feature: Added choice to install base-devel
This commit is contained in:
commit
f9335a1a9a
1 changed files with 13 additions and 0 deletions
13
easy-arch.sh
13
easy-arch.sh
|
|
@ -146,6 +146,19 @@ pacstrap /mnt base $kernel $microcode linux-firmware btrfs-progs grub grub-btrfs
|
||||||
|
|
||||||
network_selector
|
network_selector
|
||||||
|
|
||||||
|
# Choice to install base-devel package
|
||||||
|
echo "base-devel contains helpful tools like gcc, automake, autoconf, sudo and many others."
|
||||||
|
read -r -p "This will install the base-devel package. Do you agree [y/N]? " bd_response
|
||||||
|
bd_response=${bd_response,,}
|
||||||
|
if [[ "$bd_response" =~ ^(yes|y)$ ]]
|
||||||
|
then
|
||||||
|
echo "Installing the package.."
|
||||||
|
pacstrap /mnt base-devel
|
||||||
|
else
|
||||||
|
echo "Quitting."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
# Generating /etc/fstab.
|
# Generating /etc/fstab.
|
||||||
echo "Generating a new fstab."
|
echo "Generating a new fstab."
|
||||||
genfstab -U /mnt >> /mnt/etc/fstab
|
genfstab -U /mnt >> /mnt/etc/fstab
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue