Manage Interactive Input

From FAIWiki
Revision as of 18:00, 18 January 2010 by Bittner (talk | contribs) (New page: Some Debian packages request '''interactive input''' by a user for installation. This how-to describes how to handle such situations that usually produce an error in the installation proce...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Some Debian packages request interactive input by a user for installation. This how-to describes how to handle such situations that usually produce an error in the installation process.

Problem (Example)

When installing Java (Debian package sun-java6-bin) the package requests you to accept Sun's license before the installation is effectively performed. If you have this package (or a package having a dependency to it) in a FAI class the installation may result in the following error:

sun-dlj-v1-1 license could not be presented
try 'dpkg-reconfigure debconf' to select a frontend other than noninteractive
dpkg: Error ...

Note: The problem is debconf must ask for acceptance of the Java license. As aptitude runs in non-interactive mode it aborts installing the package.

Solution

Questions by debconf can be answered in the FAI config space in the debconf folder. This is called "debconf preseeding".

Debconf preseeding is done by adding to debconf/DEFAULT (or the like) something like:

sun-java6-bin   shared/accepted-sun-dlj-v1-1    boolean true
sun-java6-jdk   shared/accepted-sun-dlj-v1-1    boolean true
sun-java6-jre   shared/accepted-sun-dlj-v1-1    boolean true

References