mirror of
https://github.com/systemd/systemd.git
synced 2026-07-25 16:55:44 +00:00
15 lines
347 B
Bash
15 lines
347 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /etc/sysconfig/udev ]; then
|
|
. /etc/sysconfig/udev
|
|
fi
|
|
|
|
[ "$UDEV_CONSOLE" != "yes" ] && exit 0
|
|
|
|
if [ -x /sbin/pam_console_setowner ]; then
|
|
if [ "$UDEV_LOG" = "yes" -a -x /usr/bin/logger ]; then
|
|
/usr/bin/logger -p auth.debug "Restoring console permissions for $DEVNAME"
|
|
fi
|
|
exec /sbin/pam_console_setowner $DEVNAME
|
|
fi
|