Add LSB headers to some init scripts (grml-home,grml-misc and firewall)
[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 ### BEGIN INIT INFO
10 # Provides:          grml-misc
11 # Required-Start:    $all
12 # Required-Stop:
13 # Default-Start:     S 2 3 4 5
14 # Default-Stop:
15 ### END INIT INFO
16
17 if grep -q nocolor /proc/cmdline ; then
18    RC_NOCOLOR=yes
19    . /etc/grml/lsb-functions
20 else
21    . /etc/grml/lsb-functions
22 fi
23
24 # finished booting
25 einfo "Finished execution of main grml startup." ; eend 0
26
27 ## END OF FILE #################################################################