mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-25 04:48:35 -04:00
7 lines
184 B
Bash
7 lines
184 B
Bash
#!/bin/sh
|
|
# Reassign ownership of the console to root, this should disallow
|
|
# assignment of console output to any random users's xterm
|
|
#
|
|
chmod 622 /dev/console
|
|
chown root /dev/console
|