add64aa2e4
Split $DIST to distribution name and version (builder_setup script) and search for scripts first $DIST-specific, but then for given distribution. Also move out some Fedora-specific things to scripts_fc17.
14 lines
375 B
Bash
Executable File
14 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Mounting archlinux install system into archlinux_dvd..."
|
|
sudo mount root-image.fs archlinux_dvd
|
|
|
|
PKGGROUPS=`cat $SCRIPTSDIR/packages.list`
|
|
|
|
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
|