summaryrefslogtreecommitdiff
path: root/scripts/live-bottom/41apt_cdrom
blob: 1a36e7fb96ce4f6fa92aed3f45c5b779bf8db39f (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
#!/bin/sh

#set -e

# initramfs-tools header

PREREQ=""

prereqs()
{
	echo "${PREREQ}"
}

case "${1}" in
	prereqs)
		prereqs
		exit 0
		;;
esac

# live-boot header

if [ -n "${NOAPTCDROM}" ]
then
	exit 0
fi

. /scripts/live-functions

log_begin_msg "Adding APT-CDROM source"

# live-boot script

if [ -d /root/cdrom ]
then
	mount -n -o bind /sys /root/sys
	mount -n -o bind /proc /root/proc
	mount -n -o bind /dev /root/dev

	chroot /root apt-cdrom -o Acquire::cdrom::AutoDetect=false -m add

	umount /root/dev
	umount /root/proc
	umount /root/sys
fi

log_end_msg