about summary refs log tree commit diff
path: root/services/agetty-generic/run
blob: b47475a1f164dee58f2a2b2f4ee1bdfeedfcb2b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

tty=${PWD##*-}

[ -r conf ] && . conf

if [ -x /sbin/getty ]; then
	# busybox
	GETTY=getty
elif [ -x /sbin/agetty ]; then
	# util-linux
	GETTY=agetty
fi

exec setsid ${GETTY}${GETTY_ARGS:+ $GETTY_ARGS} \
	"${tty}" "${BAUD_RATE}" "${TERM_NAME}"