diff options
author | Daniel Baumann <daniel@debian.org> | 2010-06-07 13:11:13 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:53:26 +0100 |
commit | 7750592e832e06cf41c3f7a9b13ac343fea50898 (patch) | |
tree | 8f892f69f0dd58afd71c5f7992da45fd1f9b3552 /bin | |
parent | 11c0be9cf9aaaebfb87badf96a4b2dabcac682ba (diff) | |
download | live-boot-7750592e832e06cf41c3f7a9b13ac343fea50898.tar.gz live-boot-7750592e832e06cf41c3f7a9b13ac343fea50898.zip |
Removing getty and login wrappers, live-config takes care about that now.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/live-getty | 20 | ||||
-rwxr-xr-x | bin/live-login | 12 |
2 files changed, 0 insertions, 32 deletions
diff --git a/bin/live-getty b/bin/live-getty deleted file mode 100755 index 6781ea5..0000000 --- a/bin/live-getty +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -set -e - -AUTOLOGIN="1" - -for ARGUMENT in "${@}" -do - if [ "${ARGUMENT}" = "-l" ] || [ "${ARGUMENT}" = "-n" ] - then - AUTOLOGIN="0" - fi -done - -if [ "${AUTOLOGIN}" = "1" ] -then - exec /sbin/getty -n -l /sbin/live-login ${*} -else - exec /sbin/getty ${*} -fi diff --git a/bin/live-login b/bin/live-login deleted file mode 100755 index c2cc5a1..0000000 --- a/bin/live-login +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -set -e - -USERNAME="root" - -if [ -f /etc/live.conf ] -then - . /etc/live.conf -fi - -exec /bin/login -f "${USERNAME}" |