preinst is in debconf 1.5.51ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/bin/sh
set -e
# Move conffile.
if [ -e /etc/apt/apt.conf.d/debconf ]; then
mv -f /etc/apt/apt.conf.d/debconf /etc/apt/apt.conf.d/70debconf
fi
|