openrc/init.d/ttys.in

24 lines
378 B
Plaintext
Raw Normal View History

#!@SBINDIR@/openrc-run
2009-05-01 15:11:40 +01:00
# Copyright (c) 2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.
2008-01-10 23:48:53 +00:00
depend()
2008-03-02 21:13:21 +00:00
{
after fsck
keyword -prefix
2008-03-02 21:13:21 +00:00
}
2008-01-10 23:48:53 +00:00
start()
{
ebegin "Setting tty flags"
ttyflags -a
eend $? || return $?
2008-01-10 23:48:53 +00:00
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
}