8 lines
244 B
Bash
8 lines
244 B
Bash
#!/bin/sh
|
|
# Reassign ownership of the console to root, this should disallow
|
|
# assignment of console output to any random users's xterm
|
|
# $Xorg: TakeConsole,v 1.3 2000/08/17 19:54:17 cpqbld Exp $
|
|
#
|
|
chmod 622 /dev/console
|
|
chown root /dev/console
|