qubes-linux-template-builder/scripts_fc17/02_install_groups.sh

11 lines
367 B
Bash
Raw Normal View History

#!/bin/sh
echo "--> Preparing environment..."
mount -t proc proc mnt/proc
export YUM0=$PWD/yum_repo_qubes
yum clean all -c $PWD/yum.conf $YUM_OPTS -y --installroot=$PWD/mnt
yum install -c $PWD/yum.conf $YUM_OPTS -y --installroot=$INSTALLDIR $PKGGROUPS || RETCODE=1
yum update -c $PWD/yum.conf $YUM_OPTS -y --installroot=$INSTALLDIR || RETCODE=1
umount mnt/proc mnt