blob: cf649f9da8506e63d6b106353bdaa4c187171041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# Reassign ownership of the console to root, this should disallow
# assignment of console output to any random users's xterm
# $OpenBSD: TakeConsole,v 1.5 2021/02/12 10:33:34 jsg Exp $
#
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
/usr/X11R6/bin/sessreg -d -l $DISPLAY -u none $USER
|