summaryrefslogtreecommitdiff
path: root/helpers/lh_chroot_apt
blob: c80f22ff9808ef677f659b218593468255d528e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#!/bin/sh

# lh_chroot_apt(1) - manage /etc/apt/apt.conf
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# 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.

set -e

# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
	. ${FUNCTION}
done

# Set static variables
DESCRIPTION="manage /etc/apt/apt.conf"
HELP=""
USAGE="${PROGRAM} {install|remove} [--force]"

Arguments "${@}"

# Reading configuration files
Read_conffile config/common
Read_conffile config/chroot
Set_defaults

# Requiring stage file
Require_stagefile .stage/bootstrap

# Checking lock file
Check_lockfile .lock

# Creating lock file
Create_lockfile .lock

case "${1}" in
	install)
		# Checking stage file
		Check_stagefile .stage/chroot_apt

		if [ -f chroot/etc/apt/apt.conf ]
		then
			# Remove old /etc/apt/apt.conf
			rm -f chroot/etc/apt/apt.conf
		fi

		if [ "${LH_APT}" = "aptitude" ] && [ ! -d chroot/etc/apt/apt.conf.d ]
		then
			mkdir -p chroot/etc/apt/apt.conf.d
		fi

		# Configuring apt ftp proxy
		if [ -n "${LH_APT_FTPPROXY}" ]
		then
			case "${LH_APT}" in
				apt|apt-get)
					echo "Acquire::ftp::Proxy \"${LH_APT_FTPPROXY}\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Acquire::ftp::Proxy \"${LH_APT_FTPPROXY}\";" > chroot/etc/apt/apt.conf.d/ftp-proxy
					;;
			esac
		fi

		# Configuring apt http proxy
		if [ -n "${LH_APT_HTTPPROXY}" ]
		then
			case "${LH_APT}" in
				apt|apt-get)
					echo "Acquire::http::Proxy \"${LH_APT_HTTPPROXY}\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Acquire::http::Proxy \"${LH_APT_HTTPPROXY}\";" > chroot/etc/apt/apt.conf.d/http-proxy
					;;
			esac
		fi

		# Configuring apt pdiffs
		if [ "${LH_APT_PDIFFS}" = "enabled" ]
		then
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "Acquire::PDiffs \"true\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Acquire::PDiffs \"true\";" > chroot/etc/apt/apt.conf.d/pdiffs
					;;
			esac
		else
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "Acquire::PDiffs \"false\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Acquire::PDiffs \"false\";" > chroot/etc/apt/apt.conf.d/pdiffs
					;;
			esac
		fi

		# Configuring apt recommends
		if [ "${LH_APT_RECOMMENDS}" = "enabled" ]
		then
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "Aptitude::Recommends-Important \"true\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Aptitude::Recommends-Important \"true\";" > chroot/etc/apt/apt.conf.d/recommends
					;;
			esac
		else
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "Aptitude::Recommends-Important \"false\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "Aptitude::Recommends-Important \"false\";" > chroot/etc/apt/apt.conf.d/recommends
					;;
			esac
		fi

		# Configuring apt secure
		if [ "${LH_APT_SECURE}" = "enabled" ]
		then
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "APT::Get::AllowUnauthenticated \"0\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "APT::Get::AllowUnauthenticated \"0\";" > chroot/etc/apt/apt.conf.d/secure
					;;
			esac
		else
			case "${LH_APT}" in
				apt|apt-get)
		                        echo "APT::Get::AllowUnauthenticated \"1\";" >> chroot/etc/apt/apt.conf
					;;

				aptitude)
					echo "APT::Get::AllowUnauthenticated \"1\";" > chroot/etc/apt/apt.conf.d/secure
					;;
			esac
		fi

		# Creating stage file
		Create_stagefile .stage/chroot_apt
		;;

	remove)
		# Deconfiguring apt settings
		rm -f chroot/etc/apt/apt.conf

		# Deconfiguring aptitude ftp proxy
		rm -f chroot/etc/apt/apt.conf.d/ftp-proxy

		# Deconfiguring aptitude http proxy
		rm -f chroot/etc/apt/apt.conf.d/http-proxy

		# Deconfiguring aptitude pdiffs
		rm -f chroot/etc/apt/apt.conf.d/pdiffs

		# Deconfiguring aptitude recommends
		rm -f chroot/etc/apt/apt.conf.d/recommends

		# Deconfiguring aptitude secure
		rm -f chroot/etc/apt/apt.conf.d/secure

		# Removing stage file
		rm -f .stage/chroot_apt
		;;

	*)
		Usage
		;;
esac