5

I've got a preseeded install from cdrom working smoothly, except for ONE prompt. It does the scan of the cdrom before installing software, and asks me if I want to insert an additional CD to scan.

Is there any way to force this question to be answered no with preseed?

This is with a 7.5.0-wheezy installed solely from CD1.

Updated 6/11/2014: Wound up just switching to the netinstall instead of from CD, so don't actually know if the below answer worked, but I've accepted it since it looks like the right approach.

Nathan Neulinger
  • 597
  • 1
  • 5
  • 16

2 Answers2

10

I attempted bburky's fix, but found that the following was needed in Debian Wheezy...

d-i apt-setup/use_mirror boolean false
d-i apt-setup/cdrom/set-first boolean false
d-i apt-setup/cdrom/set-next boolean false   
d-i apt-setup/cdrom/set-failed boolean false
Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
kingsisyphus
  • 101
  • 1
  • 4
1

My debconf-get-selections --installer output includes this:

# Scan another CD or DVD?
apt-cdrom-setup apt-setup/cdrom/set-next    boolean false

That's from Ubuntu, but it's probably appropriate for you too.

bburky
  • 26
  • 2