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

[ -r conf ] && . conf

tty=${PWD##*-}
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}"