openrc/init.d/ttys.in

23 lines
364 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2008-01-11 05:18:53 +05:30
depend()
2008-03-03 02:43:21 +05:30
{
after fsck
}
2008-01-11 05:18:53 +05:30
start()
{
ebegin "Setting tty flags"
ttyflags -a
eend $? || return $?
2008-01-11 05:18:53 +05:30
if [ -c /dev/ttyp0 ]; then
chmod 666 /dev/tty[p-uw-zP-T][0-9a-zA-Z]
fi
if [ -c /dev/ttyv1 ]; then
chmod 666 /dev/ttyv[0-9a-zA-Z]
fi
}