aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/getty_tty1/run
blob: c7c413ba41e0edabce6029ab23914705ddf184b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh

exec >/dev/null
exec 2>&1
exec </dev/null

user=root
baud=38400
delay=3
export TERM=linux

tty="/dev/${PWD##*/getty_}"

if ! test -e "$tty"; then
	exec env - sleep 32000
fi

sleep "$delay"

chown "$user" "$tty" # - devfs made happy

exec <"$tty" >"$tty" 2>&1
# using . in order to be able to set env (TERM etc) in cfg
test -x ./cfg && . ./cfg

exec \
env - "TERM=$TERM" PATH="$PATH" LOGIN_PRE_SUID_SCRIPT="$PWD/login.sh" \
softlimit \
setuidgid "$user" \
getty "$baud" "$tty" "$TERM"