2013-01-25 08:06:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
echo "--> Preparing environment..."
|
2013-02-16 21:48:39 +00:00
|
|
|
mount -t proc proc $PWD/mnt/proc
|
2013-01-25 08:06:20 +00:00
|
|
|
|
|
|
|
echo "--> Installing RPMs..."
|
|
|
|
export YUM0=$PWD/yum_repo_qubes
|
2013-12-13 03:29:29 +00:00
|
|
|
yum install -c $PWD/yum.conf $YUM_OPTS -y --installroot=$(pwd)/mnt @qubes-vm || RETCODE=1
|
2013-01-25 08:06:20 +00:00
|
|
|
|
2014-03-21 02:26:21 +00:00
|
|
|
rpm --root=$PWD/mnt --import $PWD/mnt/etc/pki/rpm-gpg/RPM-GPG-KEY-qubes-*
|
|
|
|
|
2013-01-25 08:06:20 +00:00
|
|
|
echo "--> Installing 3rd party apps"
|
2013-12-13 03:29:29 +00:00
|
|
|
$SCRIPTSDIR/add_3rd_party_software.sh || RETCODE=1
|
2013-01-25 08:06:20 +00:00
|
|
|
|
2013-04-28 20:50:18 +00:00
|
|
|
umount $PWD/mnt/proc
|
2013-12-13 03:29:29 +00:00
|
|
|
|
|
|
|
exit $RETCODE
|