summaryrefslogtreecommitdiff
path: root/examples/var_service/getty_tty1/login.sh
diff options
context:
space:
mode:
authorDenys Vlasenko2009-11-08 00:55:39 +0100
committerDenys Vlasenko2009-11-08 00:55:39 +0100
commitf5c2f72917e5f75634665f67a6105e1e82ece875 (patch)
treee1c6a85ae214ad33d4bf38e03f0a3548ad1525f6 /examples/var_service/getty_tty1/login.sh
parent44f8d013994c20a53836a8768bd488130c7df9bc (diff)
downloadbusybox-f5c2f72917e5f75634665f67a6105e1e82ece875.zip
busybox-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.gz
add more service examples
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/getty_tty1/login.sh')
-rwxr-xr-xexamples/var_service/getty_tty1/login.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/var_service/getty_tty1/login.sh b/examples/var_service/getty_tty1/login.sh
new file mode 100755
index 0000000..d69b6fd
--- /dev/null
+++ b/examples/var_service/getty_tty1/login.sh
@@ -0,0 +1,12 @@
+#!/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"
+ chown "$LOGIN_UID:$LOGIN_GID" "/dev/vcs$tail" "/dev/vcsa$tail"
+fi
+# We can do this also, but login does it itself
+# chown "$LOGIN_UID:$LOGIN_GID" "$ttyname"