config is in wine1.6 1:1.6.2-0ubuntu14.
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 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
# Default to "normal", then read system config
db_set wine/memory normal
if [ -e /etc/sysctl.d/31-wine.conf ]; then
MEM=`egrep '^vm\.mmap_min_addr=[0-9]+$' /etc/sysctl.d/31-wine.conf | cut -d= -f2`
if [ "$MEM" -eq 0 ]; then
db_set wine/memory zeropage
fi
fi
db_input medium wine/memory || true
db_go || true
|