18 lines
275 B
Bash
18 lines
275 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
if [ "$1" = "configure" ]
|
|
then
|
|
|
|
if false && [ -d /etc/X11 ] && [ ! -f /etc/X11/nvidia.conf ] && [ ! -f /etc/X11/xorg.conf ]
|
|
then
|
|
db_input high nvidia-support/create-nvidia-conf || true
|
|
db_go
|
|
fi
|
|
|
|
fi
|
|
|
|
#DEBHELPER#
|