summaryrefslogtreecommitdiff
path: root/helpers/lh_configapt
blob: 81ff23a900b5a48560e4964282cf1aab4b8ad32c (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
#!/bin/sh

# lh_configapt.sh <action>

case "${1}" in
	apply-proxy)
		# Configure ftp proxy
		if [ -n "${LIVE_PROXY_FTP}" ]
		then
			echo "Acquire::ftp::Proxy \"${LIVE_PROXY_FTP}\";" > "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_ftp-proxy.conf
		fi

		# Configure http proxy
		if [ -n "${LIVE_PROXY_HTTP}" ]
		then
			echo "Acquire::http::Proxy \"${LIVE_PROXY_HTTP}\";" > "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_http-proxy.conf
		fi
		;;

	apply-recommends)
		# Configure recommends
		if [ "${LIVE_RECOMMENDS}" = "yes" ]
		then
			echo "Aptitude::Recommends-Important \"true\";" > "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_recommends.conf
		else
			echo "Aptitude::Recommends-Important \"false\";" > "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_recommends.conf
		fi
		;;

	deapply-proxy)
		# Deconfigure ftp proxy
		if [ -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_ftp-proxy.conf ]
		then
			rm -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_ftp-proxy.conf
		fi

		# Deconfigure http proxy
		if [ -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_http-proxy.conf ]
		then
			rm -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_http-proxy.conf
		fi
		;;

	deapply-recommends)
		# Deconfigure recommends
		if [ -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_recommends.conf ]
		then
			rm -f "${LIVE_CHROOT}"/etc/apt/apt.conf.d/00make-live_recommends.conf
		fi
		;;
esac