2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Turns numlock on for the consoles."
|
|
|
|
|
2009-02-13 17:54:32 +05:30
|
|
|
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
2007-11-24 03:53:20 +05:30
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -openvz -prefix -systemd-nspawn -vserver
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
_setleds()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
[ -z "$1" ] && return 1
|
|
|
|
|
|
|
|
local dev=/dev/tty t= i=1 retval=0
|
|
|
|
[ -d /dev/vc ] && dev=/dev/vc/
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
while [ $i -le $ttyn ]; do
|
|
|
|
setleds -D "$1"num < $dev$i || retval=1
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( i += 1 ))
|
2007-04-05 16:48:42 +05:30
|
|
|
done
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
return $retval
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Enabling numlock on ttys"
|
|
|
|
_setleds +
|
|
|
|
eend $? "Failed to enable numlock"
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2021-03-19 06:12:49 +05:30
|
|
|
yesno $RC_GOINGDOWN && return 0
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Disabling numlock on ttys"
|
|
|
|
_setleds -
|
|
|
|
eend $? "Failed to disable numlock"
|
|
|
|
}
|