home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2011 November
/
CHIP_2011_11.iso
/
Programy
/
Linux
/
Ubuntu_64-bit
/
ubuntu-11.04-desktop-amd64.iso
/
casper
/
filesystem.squashfs
/
sbin
/
casper-getty
< prev
next >
Wrap
Text File
|
2011-03-28
|
268b
|
16 lines
#! /bin/sh
autologin=1
for opt in "$@" ; do
if [ "$opt" = "-l" -o "$opt" = "-n" ] ; then
autologin=0
fi
done
if [ "$autologin" = "1" ] ; then
exec /sbin/getty -n -l /sbin/casper-login $*
else
exec /sbin/getty $*
fi