live-build/helpers/lh_chroot_apt

172 lines
4.2 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
2008-03-06 14:43:00 -01:00
# Copyright (C) 2006-2008 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="${LH_BASE:-/usr/share/live-helper}"
for FUNCTION in "${LH_BASE}"/functions/*.sh
2007-09-23 08:04:46 +00:00
do
2007-09-23 08:05:11 +00:00
. "${FUNCTION}"
2007-09-23 08:04:46 +00:00
done
2007-09-23 08:05:11 +00:00
# Setting static variables
2007-09-23 08:04:48 +00:00
DESCRIPTION="manage /etc/apt/apt.conf"
HELP=""
USAGE="${PROGRAM} {install|remove} [--force]"
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
2008-04-07 10:10:21 +00:00
Read_conffile 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
2007-09-23 08:04:47 +00:00
Require_stagefile .stage/bootstrap
2007-09-23 08:04:46 +00:00
case "${1}" in
install)
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 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
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
2007-09-23 08:04:50 +00:00
rm -f chroot/etc/apt/apt.conf.d/00pdiffs
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
2007-09-23 08:04:50 +00:00
rm -f chroot/etc/apt/apt.conf.d/00recommends
2007-09-23 08:04:46 +00:00
2007-09-23 08:04:48 +00:00
# Deconfiguring aptitude secure
2007-09-23 08:04:50 +00:00
rm -f chroot/etc/apt/apt.conf.d/00secure
2007-09-23 08:04:48 +00:00
# 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
if ls config/chroot_local-packages/*.deb > /dev/null 2>&1
then
cat >>chroot/etc/apt/preferences <<EOF
Package: *
Pin: release o=chroot_local-packages
Pin-Priority: 1001
EOF
fi