config is in vdr-plugin-remote 0.5.0-5.
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 | #!/bin/sh
if ! cat /proc/bus/input/handlers 2>/dev/null | grep -q evdev
then
if ! lsmod | grep -q ^evdev
then
. /usr/share/debconf/confmodule
# ask module install question:
db_input high vdr-plugin-remote/install_evdev || false
db_go
fi
fi
|