##// END OF EJS Templates
Merge pull request #161 from BrainStone/master...
Merge pull request #161 from BrainStone/master Use 4.14.y as default kernel version - thanks for BrainStone for the fix

Fichier de la dernière révision:

r375:a90f6ad1a83f
r395:844a1a4c28b7 Fusion
Show More
11-apt.sh
39 lines | 1011 B | application/x-sh | BashLexer
#
# Setup APT repositories
#
# Load utility functions
. ./functions.sh
# Install and setup APT proxy configuration
if [ -z "$APT_PROXY" ] ; then
install_readonly files/apt/10proxy "${ETC_DIR}/apt/apt.conf.d/10proxy"
sed -i "s/\"\"/\"${APT_PROXY}\"/" "${ETC_DIR}/apt/apt.conf.d/10proxy"
fi
if [ "$BUILD_KERNEL" = false ] ; then
echo "Downloading precompiled kernel"
echo "error: not configured"
exit 1;
# BUILD_KERNEL=true
else
echo "No precompiled kernel repositories were added"
fi
# Upgrade package index and update all installed packages and changed dependencies
chroot_exec apt-get -qq -y update
chroot_exec apt-get -qq -y -u dist-upgrade
if [ "$APT_INCLUDES_LATE" ] ; then
chroot_exec apt-get -qq -y install "$(echo "$APT_INCLUDES_LATE" |tr , ' ')"
fi
if [ -d packages ] ; then
for package in packages/*.deb ; do
cp "$package" "${R}"/tmp
chroot_exec dpkg --unpack /tmp/"$(basename "$package")"
done
fi
chroot_exec apt-get -qq -y -f install
chroot_exec apt-get -qq -y check