forked from pool/systemd
Marcus Meissner
51896e9167
- Add improve-readahead-spinning.patch: improve readahead performance on spinning media with ext4. - Add fix-journal-vacuum-logic.patch: fix vacuum logic in journal (bnc#789589). - Add fix-lsb-provides.patch: ensure LSB provides are correctly handled if also referenced as dependencies (bnc#809646). - Add fix-loopback-mount.patch: ensure udevd is started (and therefore static devices are created) before mounting (bnc#809820). - Update systemd-sysv-convert to search services files in new location (bnc#809695). - Add logind-nvidia-acl.diff: set ACL on nvidia devices (bnc#808319). - Add do-no-isolate-on-fsck-failure.patch: do not turn off services if fsck fails (bnc#812874) - Add wait-for-processes-killed.patch: wait for processes killed by SIGTERM before killing them with SIGKILL. - Update systemctl-options.patch to only apply SYSTEMCTL_OPTIONS to systemctl command (bnc#801878). OBS-URL: https://build.opensuse.org/request/show/163593 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=361
15 lines
506 B
Diff
15 lines
506 B
Diff
Index: systemd-195/src/login/logind-acl.c
|
|
===================================================================
|
|
--- systemd-195.orig/src/login/logind-acl.c
|
|
+++ systemd-195/src/login/logind-acl.c
|
|
@@ -240,6 +240,9 @@ int devnode_acl_all(struct udev *udev,
|
|
goto finish;
|
|
}
|
|
|
|
+ devnode_acl("/dev/nvidia0", flush, del, old_uid, add, new_uid);
|
|
+ devnode_acl("/dev/nvidiactl", flush, del, old_uid, add, new_uid);
|
|
+
|
|
finish:
|
|
if (e)
|
|
udev_enumerate_unref(e);
|