File: nvidia-support.config

package info (click to toggle)
nvidia-support 20151021%2B13
  • links: PTS, VCS
  • area: contrib
  • in suites: bullseye
  • size: 328 kB
  • sloc: sh: 184; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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#