13c8c08d29
Note: the template build successfully but has not been tested. Note: the livecd should be verified before building the template (Checksum/PGP)
12 lines
332 B
Bash
Executable File
12 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Mounting archlinux install system into archlinux_dvd..."
|
|
sudo mount root-image.fs archlinux_dvd
|
|
|
|
echo "-> Installing archlinux package groups..."
|
|
echo "-> Selected packages:"
|
|
echo "$PKGGROUPS"
|
|
sudo ./archlinux_dvd/usr/bin/arch-chroot $INSTALLDIR pacman --needed --noconfirm -S $PKGGROUPS
|
|
|
|
sudo umount archlinux_dvd
|