2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2020-03-11 09:07:21 -01:00
|
|
|
## Copyright (C) 2016-2020 The Debian Live team
|
2015-01-04 18:05:39 -01:00
|
|
|
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## 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
|
2012-08-27 13:52:29 +00:00
|
|
|
[ -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
|
2015-02-05 02:30:47 -01:00
|
|
|
DESCRIPTION="Manage /etc/apt/apt.conf"
|
2008-08-14 00:39:48 +00:00
|
|
|
USAGE="${PROGRAM} {install|install-binary|remove} [--force]"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2015-02-05 02:30:47 -01:00
|
|
|
# Processing arguments and configuration files
|
|
|
|
Init_config_data "${@}"
|
2007-09-23 08:04:46 +00:00
|
|
|
|
|
|
|
# Requiring stage file
|
2020-03-15 12:05:44 -01:00
|
|
|
Require_stagefiles config bootstrap
|
2020-03-12 00:21:39 -01:00
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
case "${1}" in
|
2008-08-14 00:39:48 +00:00
|
|
|
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
|
2020-03-13 16:11:53 -01:00
|
|
|
Check_stagefile
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2020-03-13 15:19:59 -01:00
|
|
|
# Acquire lock file
|
2015-02-05 02:30:47 -01:00
|
|
|
Acquire_lockfile
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_APT_FTP_PROXY}" ]
|
2007-09-23 08:04:46 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_APT_HTTP_PROXY}" ]
|
2007-09-23 08:04:46 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_APT_PIPELINE}" ]
|
2007-09-23 08:05:11 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_APT_RECOMMENDS}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
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
|
|
|
|
;;
|
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_APT_SECURE}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2008-03-11 15:32:03 -01:00
|
|
|
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
|
2018-03-23 14:13:41 -01:00
|
|
|
echo "Acquire::AllowInsecureRepositories \"false\";" >> chroot/etc/apt/apt.conf.d/00secure
|
2007-09-23 08:04:50 +00:00
|
|
|
;;
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2008-03-11 15:32:03 -01:00
|
|
|
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
|
2018-03-23 14:13:41 -01:00
|
|
|
echo "Acquire::AllowInsecureRepositories \"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
|
|
|
|
2009-01-09 14:17:31 -01:00
|
|
|
# Configuring apt config
|
2012-10-22 18:27:13 +00:00
|
|
|
if [ -f config/apt/apt.conf ]
|
2009-01-09 14:17:31 -01:00
|
|
|
then
|
|
|
|
if [ -f chroot/etc/apt/apt.conf ]
|
|
|
|
then
|
|
|
|
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
|
|
|
|
fi
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
cp config/apt/apt.conf chroot/etc/apt/apt.conf
|
2009-01-09 14:17:31 -01:00
|
|
|
fi
|
|
|
|
|
2007-10-14 19:47:35 +00:00
|
|
|
# Configuring apt preferences
|
2012-10-22 18:27:13 +00:00
|
|
|
if [ -f config/apt/preferences ]
|
2007-10-14 19:47:35 +00:00
|
|
|
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
|
2007-10-14 19:47:35 +00:00
|
|
|
fi
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
cp config/apt/preferences chroot/etc/apt/preferences
|
2007-10-14 19:47:35 +00:00
|
|
|
fi
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
if Find_files config/apt/*.pref
|
2012-01-07 17:47:41 -01:00
|
|
|
then
|
2012-10-22 18:27:13 +00:00
|
|
|
for _FILE in config/apt/*.pref
|
2012-01-07 17:47:41 -01:00
|
|
|
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
|
|
|
|
|
2012-02-04 20:35:39 -01:00
|
|
|
cp -aL ${_FILE} chroot/etc/apt/preferences.d
|
2012-01-07 17:47:41 -01:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2011-09-07 15:33:53 +00:00
|
|
|
if Find_files config/packages.chroot/*.deb || Find_files config/packages/*.deb
|
2008-08-10 06:03:27 +00:00
|
|
|
then
|
|
|
|
echo >> chroot/etc/apt/preferences
|
2010-11-23 08:36:48 -01:00
|
|
|
echo "# Added by lb_chroot_apt ${@}" >> chroot/etc/apt/preferences
|
2008-08-10 06:03:27 +00:00
|
|
|
echo "Package: *" >> chroot/etc/apt/preferences
|
2011-09-07 14:02:03 +00:00
|
|
|
echo "Pin: release o=config/packages.chroot" >> chroot/etc/apt/preferences
|
2008-08-12 18:17:39 +00:00
|
|
|
|
|
|
|
case "${1}" in
|
|
|
|
install)
|
|
|
|
# Ensure local packages have priority
|
|
|
|
echo "Pin-Priority: 1001" >> chroot/etc/apt/preferences
|
|
|
|
;;
|
|
|
|
|
|
|
|
install-binary)
|
2010-11-23 08:36:48 -01:00
|
|
|
# Ensure local packages are not re-installed during lb_binary
|
2008-08-12 18:17:39 +00:00
|
|
|
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
|
2008-08-10 06:03:27 +00:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Creating stage file
|
2020-03-13 16:11:53 -01:00
|
|
|
Create_stagefile
|
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"
|
|
|
|
|
2020-03-13 15:19:59 -01:00
|
|
|
# Acquire lock file
|
2015-02-05 02:30:47 -01:00
|
|
|
Acquire_lockfile
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ "${LB_APT_RECOMMENDS}" = "true" ]
|
2008-08-16 01:15:40 +00:00
|
|
|
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
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ "${LB_APT_SECURE}" = "true" ]
|
2008-08-16 01:15:40 +00:00
|
|
|
then
|
|
|
|
rm -f chroot/etc/apt/apt.conf.d/00secure
|
|
|
|
fi
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2009-01-09 14:17:31 -01:00
|
|
|
# Configuring apt config
|
2012-10-22 18:27:13 +00:00
|
|
|
if [ -f config/apt/apt.conf ]
|
2009-01-09 14:17:31 -01:00
|
|
|
then
|
|
|
|
if [ -f chroot/etc/apt/apt.conf ]
|
|
|
|
then
|
|
|
|
mv chroot/etc/apt/apt.conf chroot/etc/apt/apt.conf.orig
|
|
|
|
fi
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
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
|
2009-01-09 14:17:31 -01:00
|
|
|
fi
|
|
|
|
|
2007-10-14 19:47:35 +00:00
|
|
|
# Deconfiguring apt preferences
|
2012-10-22 18:27:13 +00:00
|
|
|
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
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
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
|
|
|
|
|
2012-10-22 18:27:13 +00:00
|
|
|
if Find_files config/apt/*.pref
|
2012-01-07 17:47:41 -01:00
|
|
|
then
|
2012-10-22 18:27:13 +00:00
|
|
|
for _FILE in config/apt/*.pref
|
2012-01-07 17:47:41 -01:00
|
|
|
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
|
|
|
|
|
2012-02-04 20:35:39 -01:00
|
|
|
cp -aL ${_FILE} chroot/etc/apt/preferences.d
|
2012-01-07 17:47:41 -01:00
|
|
|
|
2012-11-19 14:21:19 -01:00
|
|
|
if [ -f chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig ]
|
2012-01-07 17:47:41 -01:00
|
|
|
then
|
|
|
|
mv chroot/etc/apt/preferences.d/$(basename ${_FILE}).orig chroot/etc/apt/preferences.d/$(basename ${_FILE})
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2011-09-07 15:33:53 +00:00
|
|
|
if Find_files config/packages.chroot/*.deb || Find_files config/packages/*.deb
|
2007-10-14 19:47:35 +00:00
|
|
|
then
|
2009-10-28 11:10:38 -01:00
|
|
|
if [ -f chroot/etc/apt/preferences ]
|
|
|
|
then
|
2010-11-23 08:36:48 -01:00
|
|
|
# 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
|
|
|
|
|
2007-10-14 19:47:35 +00:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Removing stage file
|
2020-03-13 16:11:53 -01:00
|
|
|
Remove_stagefile
|
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
|