aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/getty_tty1/login.sh
blob: f8b53fc0370e2da18542b8320e53194bcd4cbdd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

ttyname=`tty`
ttybase="${ttyname%%[0123456789]*}"     # strip numeric tail

if test "$ttybase" = "/dev/tty"; then
	tail="${ttyname:8}"
	echo "* Setting terminal device's owner to $LOGIN_UID:$LOGIN_GID"
	test -c "/dev/vcs$tail" && chown "$LOGIN_UID:$LOGIN_GID" "/dev/vcs$tail"
	test -c "/dev/vcsa$tail" && chown "$LOGIN_UID:$LOGIN_GID" "/dev/vcsa$tail"
fi
# We can do this also, but login does it itself
# chown "$LOGIN_UID:$LOGIN_GID" "$ttyname"