live-build/scripts/build/chroot_apt

320 lines
8.1 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
## live-build(7) - System Build Scripts
2014-02-08 15:47:02 -01:00
## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
## under certain conditions; see COPYING for details.
2007-09-23 08:04:46 +00:00
set -e
2007-09-23 08:05:11 +00:00
# Including common functions
[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:11 +00:00
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
2007-09-23 08:04:48 +00:00
HELP=""
USAGE="${PROGRAM} {install|install-binary|remove} [--force]"
2007-09-23 08:04:48 +00:00
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
2007-09-23 08:04:46 +00:00
Set_defaults
# Requiring stage file
Require_stagefile .build/config .build/bootstrap
2007-09-23 08:04:46 +00:00
case "${1}" in
install|install-binary)
2007-09-23 08:05:12 +00:00
Echo_message "Configuring file /etc/apt/apt.conf"
2007-09-23 08:04:46 +00:00
# Checking stage file
Check_stagefile .build/chroot_apt
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
# Checking lock file
Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
2007-09-23 08:04:48 +00:00
2007-09-23 08:05:11 +00:00
mkdir -p chroot/etc/apt/apt.conf.d
2007-09-23 08:04:46 +00:00
# Configuring apt ftp proxy
if [ -n "${LB_APT_FTP_PROXY}" ]
2007-09-23 08:04:46 +00:00
then
echo "Acquire::ftp::Proxy \"${LB_APT_FTP_PROXY}\";" > chroot/etc/apt/apt.conf.d/00ftp-proxy
2007-09-23 08:04:46 +00:00
fi
# Configuring apt http proxy
if [ -n "${LB_APT_HTTP_PROXY}" ]
2007-09-23 08:04:46 +00:00
then
echo "Acquire::http::Proxy \"${LB_APT_HTTP_PROXY}\";" > chroot/etc/apt/apt.conf.d/00http-proxy
2007-09-23 08:04:46 +00:00
fi
2007-09-23 08:05:11 +00:00
# Configuring apt pipeline
if [ -n "${LB_APT_PIPELINE}" ]
2007-09-23 08:05:11 +00:00
then
echo "Acquire::http::Pipeline-Depth \"${LB_APT_PIPELINE}\";" > chroot/etc/apt/apt.conf.d/00pipeline
2007-09-23 08:05:11 +00:00
fi
2007-09-23 08:04:46 +00:00
# Configuring apt recommends
case "${LB_APT_RECOMMENDS}" in
true)
2007-09-23 08:05:17 +00:00
echo "APT::Install-Recommends \"true\";" > chroot/etc/apt/apt.conf.d/00recommends
echo "Aptitude::Recommends-Important \"true\";" >> chroot/etc/apt/apt.conf.d/00recommends
;;
false)
2007-09-23 08:05:17 +00:00
echo "APT::Install-Recommends \"false\";" > chroot/etc/apt/apt.conf.d/00recommends
echo "Aptitude::Recommends-Important \"false\";" >> chroot/etc/apt/apt.conf.d/00recommends
;;
esac
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:48 +00:00
# Configuring apt secure
case "${LB_APT_SECURE}" in
true)
echo "APT::Get::AllowUnauthenticated \"false\";" > chroot/etc/apt/apt.conf.d/00secure
2007-09-23 08:05:09 +00:00
echo "Aptitude::CmdLine::Ignore-Trust-Violations \"false\";" >> chroot/etc/apt/apt.conf.d/00secure
2007-09-23 08:04:50 +00:00
;;
2007-09-23 08:04:48 +00:00
false)
echo "APT::Get::AllowUnauthenticated \"true\";" > chroot/etc/apt/apt.conf.d/00secure
2007-09-23 08:05:09 +00:00
echo "Aptitude::CmdLine::Ignore-Trust-Violations \"true\";" >> chroot/etc/apt/apt.conf.d/00secure
2007-09-23 08:04:50 +00:00
;;
esac
2007-09-23 08:04:48 +00:00
# Configuring apt config
if [ -f config/apt/apt.conf ]
then
if [ -f chroot/etc/apt/apt.conf ]
then
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
fi
cp config/apt/apt.conf chroot/etc/apt/apt.conf
fi
# Configuring apt preferences
if [ -f config/apt/preferences ]
then
if [ -f chroot/etc/apt/preferences ]
then
2008-02-13 08:20:42 -01:00
mv chroot/etc/apt/preferences chroot/etc/apt/preferences.orig
fi
cp config/apt/preferences chroot/etc/apt/preferences
fi
if Find_files config/apt/*.pref
then
for _FILE in config/apt/*.pref
do
if [ -f chroot/etc/apt/preferences.d/$(basename ${_FILE}) ]
then
mv chroot/etc/apt/preferences.d/$(basename ${_FILE}) chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig
fi
cp -aL ${_FILE} chroot/etc/apt/preferences.d
done
fi
if Find_files config/packages.chroot/*.deb || Find_files config/packages/*.deb
then
echo >> chroot/etc/apt/preferences
echo "# Added by lb_chroot_apt ${@}" >> chroot/etc/apt/preferences
echo "Package: *" >> chroot/etc/apt/preferences
echo "Pin: release o=config/packages.chroot" >> chroot/etc/apt/preferences
case "${1}" in
install)
# Ensure local packages have priority
echo "Pin-Priority: 1001" >> chroot/etc/apt/preferences
;;
install-binary)
# Ensure local packages are not re-installed during lb_binary
echo "Pin-Priority: 99" >> chroot/etc/apt/preferences
echo >> chroot/etc/apt/preferences
echo "Package: *" >> chroot/etc/apt/preferences
echo "Pin: release o=debian" >> chroot/etc/apt/preferences
echo "Pin-Priority: 99" >> chroot/etc/apt/preferences
;;
esac
fi
case "${LB_MODE}" in
progress-linux)
if [ ! -e chroot/etc/apt/preferences.d/progress-linux.pref ]
then
_DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | sed -e 's|-backports||')"
_ENABLE_DISTRIBUTIONS="${_DISTRIBUTION}"
_DISABLE_DISTRIBUTIONS=""
if [ "${LB_SECURITY}" = "true" ]
then
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-security"
fi
if [ "${LB_UPDATES}" = "true" ]
then
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-updates"
fi
case "${LB_DISTRIBUTION}" in
*-backports)
if [ "${LB_BACKPORTS}" = "true" ]
then
_ENABLE_DISTRIBUTIONS="${_ENABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-backports"
fi
;;
*)
if [ "${LB_BACKPORTS}" = "true" ]
then
_DISABLE_DISTRIBUTIONS="${_DISABLE_DISTRIBUTIONS} ${_DISTRIBUTION}-backports"
fi
;;
esac
for _DISTRIBUTION in ${_ENABLE_DISTRIBUTIONS}
do
cat >> chroot/etc/apt/preferences.d/progress-linux.pref << EOF
Package: *
Pin: release n=${_DISTRIBUTION}
Pin-Priority: 999
EOF
done
for _DISTRIBUTION in ${_DISABLE_DISTRIBUTIONS}
do
cat >> chroot/etc/apt/preferences.d/progress-linux.pref << EOF
#Package: *
#Pin: release n=${_DISTRIBUTION}
#Pin-Priority: 999
EOF
done
fi
;;
esac
2007-09-23 08:04:46 +00:00
# Creating stage file
Create_stagefile .build/chroot_apt
2007-09-23 08:04:46 +00:00
;;
remove)
2007-09-23 08:05:12 +00:00
Echo_message "Deconfiguring file /etc/apt/apt.conf"
2007-09-23 08:04:50 +00:00
# Checking lock file
Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
2007-09-23 08:04:46 +00:00
# Deconfiguring aptitude ftp proxy
2007-09-23 08:04:50 +00:00
rm -f chroot/etc/apt/apt.conf.d/00ftp-proxy
2007-09-23 08:04:46 +00:00
# Deconfiguring aptitude http proxy
2007-09-23 08:04:50 +00:00
rm -f chroot/etc/apt/apt.conf.d/00http-proxy
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:11 +00:00
# Deconfiguring aptitude pipeline
rm -f chroot/etc/apt/apt.conf.d/00pipeline
2007-09-23 08:04:46 +00:00
# Deconfiguring aptitude recommends
if [ "${LB_APT_RECOMMENDS}" = "true" ]
then
rm -f chroot/etc/apt/apt.conf.d/00recommends
fi
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:48 +00:00
# Deconfiguring aptitude secure
if [ "${LB_APT_SECURE}" = "true" ]
then
rm -f chroot/etc/apt/apt.conf.d/00secure
fi
2007-09-23 08:04:48 +00:00
# Configuring apt config
if [ -f config/apt/apt.conf ]
then
if [ -f chroot/etc/apt/apt.conf ]
then
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
fi
cp config/apt/apt.conf chroot/etc/apt/apt.conf
2009-10-28 11:10:38 -01:00
if [ -f chroot/etc/apt/apt.conf.orig ]
then
mv chroot/etc/apt/apt.conf.orig chroot/etc/apt/apt.conf
fi
fi
# Deconfiguring apt preferences
if [ -f config/apt/preferences ]
2009-10-28 11:10:38 -01:00
then
if [ -f chroot/etc/apt/preferences ]
then
mv chroot/etc/apt/preferences chroot/etc/apt/preferences.orig
fi
cp config/apt/preferences chroot/etc/apt/preferences
2009-10-28 11:10:38 -01:00
if [ -f chroot/etc/apt/preferences.orig ]
then
mv chroot/etc/apt/preferences.orig chroot/etc/apt/preferences
fi
fi
if Find_files config/apt/*.pref
then
for _FILE in config/apt/*.pref
do
if [ -f chroot/etc/apt/preferences.d/$(basename ${_FILE}) ]
then
mv chroot/etc/apt/preferences.d/$(basename ${_FILE}) chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig
fi
cp -aL ${_FILE} chroot/etc/apt/preferences.d
if [ -f chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig ]
then
mv chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig chroot/etc/apt/preferences.d/$(basename ${_FILE})
fi
done
fi
if Find_files config/packages.chroot/*.deb || Find_files config/packages/*.deb
then
2009-10-28 11:10:38 -01:00
if [ -f chroot/etc/apt/preferences ]
then
# delete additions from lb_chroot_apt install|install-binary to preferences
sed -i '/# Added by lb_chroot_apt/,$d' chroot/etc/apt/preferences
2009-10-28 11:10:38 -01:00
# delete the last empty line
sed -i '${/^[[:blank:]]*$/d;}' chroot/etc/apt/preferences
# if the resulting preferences file is empty there was no user additions, remove it
if [ ! -s chroot/etc/apt/preferences ]
then
rm -rf chroot/etc/apt/preferences
fi
fi
fi
2007-09-23 08:04:46 +00:00
# Removing stage file
rm -f .build/chroot_apt
2007-09-23 08:04:46 +00:00
;;
*)
2007-09-23 08:04:48 +00:00
Usage
2007-09-23 08:04:46 +00:00
;;
esac