summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/live-getty20
-rwxr-xr-xbin/live-login12
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}"