c6e41959d6
Submitted by: Eric P. Scott <eps@sirius.com>
10 lines
139 B
Bash
Executable File
10 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: login.en,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
|
|
|
|
if [ "$2" != "root" ]
|
|
then
|
|
exit
|
|
fi
|
|
cat /etc/motd
|
|
HOME=/root exec -sh
|