17 lines
249 B
Bash
17 lines
249 B
Bash
#!/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# |