Use grml-core for bootparameter handling.
[grml-etc.git] / etc / init.d / grml-misc
1 #!/bin/sh
2 # Filename:      grml-misc
3 # Purpose:       initialize misc stuff on grml system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Sam Mai 27 14:43:56 CEST 2006 [mika]
8 ################################################################################
9
10 . /usr/lib/grml/core.sh
11
12 if checkbootparam nocolor ; then
13    RC_NOCOLOR=yes
14    . /etc/grml/lsb-functions
15 else
16    . /etc/grml/lsb-functions
17 fi
18
19 # finished booting
20 einfo "Finished execution of main grml startup." ; eend 0
21
22 ## END OF FILE #################################################################