123456789101112131415161718192021222324 |
- #!/bin/sh
- # Reassign ownership of the console to root, this should disallow
- # assignment of console output to any random users's xterm
- # $OpenBSD: TakeConsole.in,v 1.1 2021/08/30 15:38:27 matthieu Exp $
- #
- prefix="/usr/X11R6"
- exec_prefix="${prefix}"
- chown root /dev/console
- chmod 622 /dev/console
- if [ -c /dev/drm0 ]; then
- chown root /dev/drm0
- fi
- if [ -c /dev/drmR128 ]; then
- chown root /dev/drmR128
- fi
- if [ -c /dev/dri/card0 ]; then
- chown root /dev/dri/card0
- fi
- if [ -c /dev/dri/renderD128 ]; then
- chown root /dev/dri/renderD128
- fi
- ${exec_prefix}/bin/sessreg -d -l $DISPLAY -u none $USER
|