2015-03-22 14:04:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
if [ -f ${TARGET_ROOT}/.extra_settings ] ; then
|
|
|
|
. ${TARGET_ROOT}/.extra_settings
|
|
|
|
fi
|
|
|
|
ARCH=${ARCH:-x86_64}
|
|
|
|
if [ $ARCH = amd64 ]; then
|
|
|
|
ARCH=x86_64
|
|
|
|
fi
|
|
|
|
# Calling elements will need to set DISTRO_NAME and DIB_RELEASE
|
|
|
|
DIB_YUMCHROOT_EXTRA_ARGS=${DIB_YUMCHROOT_EXTRA_ARGS:-}
|
|
|
|
YUMCHROOT_TARBALL=$DIB_IMAGE_CACHE/yumchroot-${DISTRO_NAME}-${DIB_RELEASE}-${ARCH}.tar.gz
|
|
|
|
# TODO Maybe deal with DIB_DISTRIBUTION_MIRROR
|
|
|
|
http_proxy=${http_proxy:-}
|
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
WORKING=$(mktemp --tmpdir=${TMP_DIR:-/tmp} -d)
|
|
|
|
EACTION="rm -r $WORKING"
|
|
|
|
trap "$EACTION" EXIT
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
YUM_CACHE=$DIB_IMAGE_CACHE/yum
|
2015-10-23 04:17:18 +00:00
|
|
|
mkdir -p $YUM_CACHE
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
# install the [fedora|centos]-[release|repo] packages inside the
|
|
|
|
# chroot, which are needed to bootstrap yum/dnf
|
|
|
|
#
|
|
|
|
# note this runs outside the chroot, where we're assuming the platform
|
|
|
|
# has yum/yumdownloader
|
|
|
|
function _install_repos {
|
2015-03-22 14:04:46 +00:00
|
|
|
yumdownloader \
|
2015-09-24 04:55:48 +00:00
|
|
|
--releasever=$DIB_RELEASE \
|
|
|
|
--setopt=reposdir=$TMP_HOOKS_PATH/yum.repos.d \
|
|
|
|
--destdir=$WORKING \
|
2015-03-22 14:04:46 +00:00
|
|
|
${DISTRO_NAME}-release
|
|
|
|
RELEASE_RPMS="${DISTRO_NAME}-release"
|
2015-09-24 04:55:48 +00:00
|
|
|
|
|
|
|
# after fedora21, this is split into into a separate -repos
|
|
|
|
# package
|
2015-03-22 14:04:46 +00:00
|
|
|
if [ $DISTRO_NAME = fedora ] ; then
|
|
|
|
yumdownloader \
|
2015-09-24 04:55:48 +00:00
|
|
|
--releasever=$DIB_RELEASE \
|
|
|
|
--setopt=reposdir=$TMP_HOOKS_PATH/yum.repos.d \
|
|
|
|
--destdir=$WORKING \
|
2015-03-22 14:04:46 +00:00
|
|
|
${DISTRO_NAME}-repos
|
|
|
|
RELEASE_RPMS="${RELEASE_RPMS} ${DISTRO_NAME}-repos"
|
|
|
|
fi
|
2015-09-24 00:14:18 +00:00
|
|
|
|
|
|
|
# --nodeps works around these wanting /bin/sh in some fedora
|
|
|
|
# releases, see rhbz#1265873
|
|
|
|
sudo rpm --root $TARGET_ROOT --nodeps -ivh $WORKING/*rpm
|
2015-09-24 04:55:48 +00:00
|
|
|
}
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
# _install_pkg_manager packages...
|
|
|
|
#
|
|
|
|
# install the package manager packages. This is done outside the chroot
|
|
|
|
# and with yum from the build system.
|
|
|
|
# TODO: one day build systems will be dnf only, but we don't handle
|
|
|
|
# that right now
|
|
|
|
function _install_pkg_manager {
|
|
|
|
# Install into the chroot, using the gpg keys from the release
|
|
|
|
# rpm's installed in the chroot
|
|
|
|
sudo sed -i "s,/etc/pki/rpm-gpg,$TARGET_ROOT/etc/pki/rpm-gpg,g" \
|
|
|
|
$TARGET_ROOT/etc/yum.repos.d/*repo
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-10-16 16:32:35 +00:00
|
|
|
sudo -E yum -y \
|
2015-03-22 14:04:46 +00:00
|
|
|
--setopt=cachedir=$YUM_CACHE/$ARCH/$DIB_RELEASE \
|
|
|
|
--setopt=reposdir=$TARGET_ROOT/etc/yum.repos.d \
|
|
|
|
--installroot $TARGET_ROOT \
|
2015-09-24 04:55:48 +00:00
|
|
|
install $@
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
# Set gpg path back because subsequent actions will take place in
|
|
|
|
# the chroot
|
|
|
|
sudo sed -i "s,$TARGET_ROOT/etc/pki/rpm-gpg,/etc/pki/rpm-gpg,g" \
|
|
|
|
$TARGET_ROOT/etc/yum.repos.d/*repo
|
|
|
|
}
|
2015-03-22 14:04:46 +00:00
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
if [ -n "$DIB_OFFLINE" -o -n "${DIB_YUMCHROOT_USE_CACHE:-}" ] && [ -f $YUMCHROOT_TARBALL ] ; then
|
|
|
|
echo $YUMCHROOT_TARBALL found in cache. Using.
|
|
|
|
sudo tar -C $TARGET_ROOT --numeric-owner -xzf $YUMCHROOT_TARBALL
|
|
|
|
else
|
|
|
|
# initalize rpmdb
|
|
|
|
sudo mkdir -p $TARGET_ROOT/var/lib/rpm
|
|
|
|
sudo rpm --root $TARGET_ROOT --initdb
|
|
|
|
|
|
|
|
# this makes sure that running yum/dnf in the chroot it can get
|
|
|
|
# out to download stuff
|
|
|
|
sudo mkdir $TARGET_ROOT/etc
|
2015-03-22 14:04:46 +00:00
|
|
|
sudo cp /etc/resolv.conf $TARGET_ROOT/etc/resolv.conf
|
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
# Bind mount the external yum cache inside the chroot. Same logic
|
|
|
|
# as in the yum element to provide for yum caching copied here
|
|
|
|
# because the sequencing is wrong otherwise
|
2015-03-22 14:04:46 +00:00
|
|
|
sudo mkdir -p $TMP_MOUNT_PATH/tmp/yum
|
|
|
|
sudo mount --bind $YUM_CACHE $TMP_MOUNT_PATH/tmp/yum
|
2015-09-24 04:55:48 +00:00
|
|
|
|
|
|
|
_install_repos
|
|
|
|
|
|
|
|
if [ $DIB_RELEASE -ge 22 ]; then
|
|
|
|
# install dnf for >= f22
|
|
|
|
_install_pkg_manager dnf dnf-plugins-core yum
|
|
|
|
else
|
|
|
|
_install_pkg_manager yum
|
|
|
|
fi
|
|
|
|
|
|
|
|
# bootstrap the environment within the chroot
|
2015-10-16 16:32:35 +00:00
|
|
|
sudo -E chroot $TARGET_ROOT ${YUM} makecache
|
|
|
|
sudo -E chroot $TARGET_ROOT ${YUM} -y \
|
2015-03-22 14:04:46 +00:00
|
|
|
--setopt=cachedir=/tmp/yum/$ARCH/$DIB_RELEASE \
|
|
|
|
install passwd findutils sudo util-linux-ng
|
|
|
|
|
2015-09-24 04:55:48 +00:00
|
|
|
# cleanup
|
|
|
|
sudo rm $TARGET_ROOT/etc/resolv.conf
|
|
|
|
sudo umount $TMP_MOUNT_PATH/tmp/yum
|
|
|
|
|
2015-03-22 14:04:46 +00:00
|
|
|
# RPM doesn't know whether files have been changed since install
|
|
|
|
# At this point though, we know for certain that we have changed no
|
|
|
|
# config files, so anything marked .rpmnew is just a bug.
|
|
|
|
for newfile in $(sudo find $TARGET_ROOT -type f -name '*rpmnew') ; do
|
|
|
|
sudo mv $newfile $(echo $newfile | sed 's/.rpmnew$//')
|
|
|
|
done
|
|
|
|
|
|
|
|
echo Caching result in $YUMCHROOT_TARBALL
|
2015-09-24 04:55:48 +00:00
|
|
|
sudo tar --numeric-owner \
|
|
|
|
-C $TARGET_ROOT \
|
|
|
|
-zcf $YUMCHROOT_TARBALL --exclude='./tmp/*' .
|
2015-03-22 14:04:46 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
sudo rm -f ${TARGET_ROOT}/.extra_settings
|