12 lines
91 B
Plaintext
12 lines
91 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "purge" ]
|
||
|
then
|
||
|
|
||
|
rm -f /etc/X11/nvidia.conf
|
||
|
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|