##// END OF EJS Templates
.
.

Fichier de la dernière révision:

r312:3ca992f0164a
r314:0bf152b27784
Show More
11-apt.sh
49 lines | 1.5 KiB | application/x-sh | BashLexer
#!/bin/bash
#
# 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;
else # BUILD_KERNEL=true
#autconfigure best apt server to not spam ftp.debian.org
#rm files/apt/sources.list
#netselect-apt does not know buster yet
if [ "$RELEASE" = "buster" ] ; then
RELEASE=${RELEASE:=testing}
fi
netselect_string=${netselect_string:=""}
if [ "$ENABLE_NONFREE" = true ] ; then
netselect-apt --arch "$RELEASE_ARCH" --sources "$netselect_string" --outfile "${ETC_DIR}/apt/sources.list" -d "$RLS"
fi
netselect-apt --arch "$RELEASE_ARCH" --sources "$netselect_string" --outfile "${ETC_DIR}/apt/sources.list" -d "$RLS"
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