Removing keyboard bottom script, live-config takes care about that now.
[debian-live-boot/hramrach.git] / bin / live-getty
blob6781ea5878e81880ec9a9d8408309a672a8141ec
1 #!/bin/sh
3 set -e
5 AUTOLOGIN="1"
7 for ARGUMENT in "${@}"
8 do
9 if [ "${ARGUMENT}" = "-l" ] || [ "${ARGUMENT}" = "-n" ]
10 then
11 AUTOLOGIN="0"
13 done
15 if [ "${AUTOLOGIN}" = "1" ]
16 then
17 exec /sbin/getty -n -l /sbin/live-login ${*}
18 else
19 exec /sbin/getty ${*}