live-build/helpers/lh_chroot_apt

218 lines
5.6 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
# lh_chroot_apt(1) - manage /etc/apt/apt.conf
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
2007-09-23 08:04:48 +00:00
#
# live-helper 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
. "${LH_BASE:-/usr/share/live-helper}"/functions.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 .stage/config .stage/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
2007-09-23 08:04:47 +00:00
Check_stagefile .stage/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
2007-09-23 08:05:17 +00:00
if [ -n "${LH_APT_FTP_PROXY}" ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:05:17 +00:00
echo "Acquire::ftp::Proxy \"${LH_APT_FTP_PROXY}\";" > chroot/etc/apt/apt.conf.d/00ftp-proxy
2007-09-23 08:04:46 +00:00
fi
# Configuring apt http proxy
2007-09-23 08:05:17 +00:00
if [ -n "${LH_APT_HTTP_PROXY}" ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:05:17 +00:00
echo "Acquire::http::Proxy \"${LH_APT_HTTP_PROXY}\";" > chroot/etc/apt/apt.conf.d/00http-proxy
2007-09-23 08:04:46 +00:00
fi
# Configuring apt pdiffs
2007-09-23 08:04:50 +00:00
case "${LH_APT_PDIFFS}" in
enabled)
echo "Acquire::PDiffs \"true\";" > chroot/etc/apt/apt.conf.d/00pdiffs
;;
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:50 +00:00
disabled)
echo "Acquire::PDiffs \"false\";" > chroot/etc/apt/apt.conf.d/00pdiffs
;;
esac
2007-09-23 08:04:46 +00:00
2007-09-23 08:05:11 +00:00
# Configuring apt pipeline
if [ -n "${LH_APT_PIPELINE}" ]
then
echo "Acquire::http::Pipeline-Depth \"${LH_APT_PIPELINE}\";" > chroot/etc/apt/apt.conf.d/00pipeline
fi
2007-09-23 08:04:46 +00:00
# Configuring apt recommends
2007-09-23 08:05:17 +00:00
case "${LH_APT_RECOMMENDS}" in
enabled)
echo "APT::Install-Recommends \"true\";" > chroot/etc/apt/apt.conf.d/00recommends
echo "Aptitude::Recommends-Important \"true\";" >> chroot/etc/apt/apt.conf.d/00recommends
;;
disabled)
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
2007-09-23 08:04:50 +00:00
case "${LH_APT_SECURE}" in
enabled)
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
2007-09-23 08:04:50 +00:00
disabled)
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/chroot_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/chroot_apt/apt.conf chroot/etc/apt/apt.conf
fi
# Configuring apt preferences
if [ -f config/chroot_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/chroot_apt/preferences chroot/etc/apt/preferences
fi
if Find_files config/chroot_local-packages/*.deb
then
if [ ! -f config/chroot_apt/preferences ] && [ "${1}" = "install-binary" ]
then
rm -f chroot/etc/apt/preferences
fi
echo >> chroot/etc/apt/preferences
echo "# Added by lh_chroot_apt ${@}" >> chroot/etc/apt/preferences
echo "Package: *" >> chroot/etc/apt/preferences
echo "Pin: release o=chroot_local-packages" >> 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 lh_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
2007-09-23 08:04:46 +00:00
# Creating stage file
2007-09-23 08:04:47 +00:00
Create_stagefile .stage/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
# Deconfiguring aptitude pdiffs
if [ "${LH_APT_PDIFFS}" = "enabled" ]
then
rm -f chroot/etc/apt/apt.conf.d/00pdiffs
fi
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 [ "${LH_APT_RECOMMENDS}" = "enabled" ]
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 [ "${LH_APT_SECURE}" = "enabled" ]
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/chroot_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/chroot_apt/apt.conf chroot/etc/apt/apt.conf
fi
# Deconfiguring apt preferences
if [ -f chroot/etc/apt/preferences.orig ]
then
mv chroot/etc/apt/preferences.orig chroot/etc/apt/preferences
else
rm -f chroot/etc/apt/preferences
fi
2007-09-23 08:04:46 +00:00
# Removing stage file
2007-09-23 08:04:47 +00:00
rm -f .stage/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