2
0
nvidia-driver-template/nvidia-graphics-drivers-#DRIVER_VERSION_MAJOR#/debian/nvidia-persistenced-#DRIVER_VERSION_MAJOR#.postinst

12 lines
333 B
Plaintext
Raw Normal View History

2024-07-24 01:06:18 +02:00
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
if ! getent passwd nvpd >/dev/null; then
# Create ad-hoc system user/group
adduser --system --group --home /var/run/nvpd/ --gecos 'NVIDIA Persistence Daemon' --no-create-home nvpd
fi
fi
#DEBHELPER#