]> git.pld-linux.org Git - packages/console-tools.git/blob - console.init
- LSB conformance changes
[packages/console-tools.git] / console.init
1 #!/bin/sh
2 #
3 # console       Load console font and keyboard table
4 #
5 # chkconfig:    345 70 30
6 #
7 # description:  Loads the console font, the application-charset map \
8 #               and the keyboard table.
9
10 # This must be executed *after* /usr is mounted.
11 # This means is /usr is NFS-mounted, it needs to
12 # run after networking and NFS mounts are up.
13
14 [ -f /etc/sysconfig/console ] || exit 0
15
16 [ -f /usr/bin/consolechars ] || exit 0
17 [ -f /usr/bin/loadkeys ] || exit 0
18
19 # Source function library
20 . /etc/rc.d/init.d/functions
21
22 case "$1" in
23   start|restart|reload|force-reload)
24         . /etc/sysconfig/console
25
26         if [ -n "$SVGATEXTMODE" ]; then
27                 run_cmd "$(nls 'Setting Text Mode') $SVGATEXTMODE" SVGATextMode $SVGATEXTMODE
28         fi
29         if [ -n "$FBSET" ]; then
30                 run_cmd "$(nls 'Setting Text Mode') $FBSET" fbset -a $FBSET
31         fi
32         if [ -n "$CONSOLEFONT" ]; then
33                 run_cmd "Loading console font and map" consolechars -m ${CONSOLEMAP:-trivial.trans} -f $CONSOLEFONT
34                 # Don't use "" here because additional options may be
35                 # specified after the font name (e.g. fallback tables)
36         fi
37         if [ -n "$KEYTABLE" ]; then
38                 run_cmd "Loading keyboard table" loadkeys $KEYTABLE < /dev/tty0 > /dev/tty0
39         fi
40         ;;
41   stop|status)
42         # Nothing to stop and/or report
43         ;;
44   *)
45         msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
46         exit 3
47 esac
48
49 exit 0
This page took 0.051924 seconds and 4 git commands to generate.