Adding debian version 2.0~a1-1.
[live-boot-grml.git] / scripts / live-bottom / 41apt_cdrom
index fdde34d..1a36e7f 100755 (executable)
@@ -18,7 +18,7 @@ case "${1}" in
                ;;
 esac
 
-# live-initramfs header
+# live-boot header
 
 if [ -n "${NOAPTCDROM}" ]
 then
@@ -27,13 +27,21 @@ fi
 
 . /scripts/live-functions
 
-log_begin_msg "Adding APT-CDROM source..."
+log_begin_msg "Adding APT-CDROM source"
 
-# live-initramfs script
+# live-boot script
 
-mkdir -p /root/cdrom
-mount -n -o bind /cdrom /root/cdrom
-chroot /root apt-cdrom -m add
-umount /root/cdrom
+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