Debconf: Difference between revisions
From DWIKI
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
*[http://www.fifi.org/doc/debconf-doc/tutorial.html The Debconf Programmer's Tutorial] | *[http://www.fifi.org/doc/debconf-doc/tutorial.html The Debconf Programmer's Tutorial] | ||
*http://wiki.debian.org/DebConf | *http://wiki.debian.org/DebConf | ||
*[http://www.debian.org/doc/packaging-manuals/debconf_specification.html Configuration management] | |||
The actual config data | The actual config data | ||
/var/cache/debconf/config.dat | /var/cache/debconf/config.dat |
Revision as of 00:29, 2 January 2007
The actual config data
/var/cache/debconf/config.dat
The location of relevant files per package
/var/lib/dpkg/info
Finding packages that should work for dpkg-reconfigure:
find /var/lib/dpkg/info -name \*.postinst | xargs grep -l debconf| sed 's/^.*\/\(.*\)/\1/g;s/.postinst//g'