2
0
nvidia-driver-template/nvidia-graphics-drivers-#DRIVER_VERSION_MAJOR#/debian/xserver-xorg-video-nvidia-#DRIVER_VERSION_MAJOR#.postinst

22 lines
383 B
Plaintext
Raw Normal View History

2024-07-24 01:06:18 +02:00
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
if [ "$1" = "configure" ]
then
if [ -x /usr/lib/nvidia/check-for-conflicting-opengl-libraries ]
then
/usr/lib/nvidia/check-for-conflicting-opengl-libraries
fi
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#