17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
. /usr/share/debconf/confmodule
|
||
|
|
||
|
if [ "$1" = "configure" ]
|
||
|
then
|
||
|
|
||
|
if [ -x /usr/lib/nvidia/check-for-mismatching-nvidia-module ]
|
||
|
then
|
||
|
/usr/lib/nvidia/check-for-mismatching-nvidia-module #DRIVER_VERSION_FULL#
|
||
|
fi
|
||
|
|
||
|
fi
|
||
|
|
||
|
|
||
|
#DEBHELPER#
|