Adding debian version 2.0~a1-1.
[live-boot-grml.git] / scripts / live-bottom / 41apt_cdrom
1 #!/bin/sh
2
3 #set -e
4
5 # initramfs-tools header
6
7 PREREQ=""
8
9 prereqs()
10 {
11         echo "${PREREQ}"
12 }
13
14 case "${1}" in
15         prereqs)
16                 prereqs
17                 exit 0
18                 ;;
19 esac
20
21 # live-boot header
22
23 if [ -n "${NOAPTCDROM}" ]
24 then
25         exit 0
26 fi
27
28 . /scripts/live-functions
29
30 log_begin_msg "Adding APT-CDROM source"
31
32 # live-boot script
33
34 if [ -d /root/cdrom ]
35 then
36         mount -n -o bind /sys /root/sys
37         mount -n -o bind /proc /root/proc
38         mount -n -o bind /dev /root/dev
39
40         chroot /root apt-cdrom -o Acquire::cdrom::AutoDetect=false -m add
41
42         umount /root/dev
43         umount /root/proc
44         umount /root/sys
45 fi
46
47 log_end_msg