about summary refs log tree commit diff
path: root/services/agetty-generic/run
blob: 1e6c2bd3c0cd75494d218b54c1ee64c400cbc09d (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}"