8 lines
175 B
Plaintext
8 lines
175 B
Plaintext
#!/bin/sh
|
|
[ -x /lib/udev/udev-acl ] || exit 0
|
|
# This is enough to renew the device owners
|
|
for i in /dev/nvidia*; do
|
|
/lib/udev/udev-acl "--action=change" "--device=$i"
|
|
done
|
|
|