source: MondoRescue/branches/2.2.9/mindi-busybox/examples/var_service/getty_tty1/run@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • Property svn:executable set to *
File size: 495 bytes
Line 
1#!/bin/sh
2
3exec >/dev/null
4exec 2>&1
5exec </dev/null
6
7user=root
8baud=38400
9delay=3
10export TERM=linux
11
12tty="/dev/${PWD##*/getty_}"
13
14if ! test -e "$tty"; then
15 exec env - sleep 32000
16fi
17
18sleep "$delay"
19
20chown "$user" "$tty" # - devfs made happy
21
22exec <"$tty" >"$tty" 2>&1
23# using . in order to be able to set env (TERM etc) in cfg
24test -x ./cfg && . ./cfg
25
26exec \
27env - "TERM=$TERM" PATH="$PATH" LOGIN_PRE_SUID_SCRIPT="$PWD/login.sh" \
28softlimit \
29setuidgid "$user" \
30getty "$baud" "$tty" "$TERM"
Note: See TracBrowser for help on using the repository browser.