postinst is in console-setup-linux 1.108ubuntu15.
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 9 10 11 12 13 14 15 16 | #!/bin/sh
set -e
CONFIGDIR=/etc/console-setup
update-alternatives --install /etc/vtrgb vtrgb "$CONFIGDIR/vtrgb" 50
update-alternatives --install /etc/vtrgb vtrgb "$CONFIGDIR/vtrgb.vga" 20
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/setvtrgb" ]; then
update-rc.d setvtrgb defaults >/dev/null || exit $?
fi
fi
# End automatically added section
|