##// END OF EJS Templates
fixes lineending
fixes lineending

Fichier de la dernière révision:

r324:378e21af8a46
r340:25ed084b58f6
Show More
11-apt.sh
45 lines | 1.2 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;
# BUILD_KERNEL=true
else
echo "No precompiled kernel repositories were added"
fi
#ipinfo=$(curl ipinfo.io | grep country )
#grep -o '\"[^"]*\"' $ipinfo | tr -d '"'
#grep -Po '"country":.*?[^\\]",' $(curl ipinfo.io | grep country )
#sed -i "s,http:,https:,g" "${ETC_DIR}/apt/sources.list"
# 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