nvidia-358 is needed since 361 breaks civ5

This commit is contained in:
Von Random 2016-02-05 22:33:51 +03:00
parent b6c336a574
commit a4e80a313e
6 changed files with 455 additions and 0 deletions

View file

@ -0,0 +1,10 @@
post_upgrade() {
echo "If you run into trouble with CUDA not being available, run nvidia-modprobe first."
}
post_install() {
getent group nvidia-persistenced &>/dev/null || groupadd -g 143 nvidia-persistenced
getent passwd nvidia-persistenced &>/dev/null || useradd -c 'NVIDIA Persistence Daemon' -u 143 -g nvidia-persistenced -d '/' -s /sbin/nologin nvidia-persistenced
post_upgrade
}