2024-10-22 16:10:45 +01:00

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