]> git.pld-linux.org Git - projects/rc-scripts.git/blob - rc.d/rc.init
- support exit code defined in LSB spec (http://www.linuxbase.org/)
[projects/rc-scripts.git] / rc.d / rc.init
1 # $Id: rc.init,v 1.3 1999/09/02 12:42:44 misiek Exp $
2 # This script is started by init ...
3
4 if [ -r /etc/sysconfig/i18n ]; then
5 . /etc/sysconfig/i18n
6 fi
7
8 if [ -n "$LANG" ]; then
9 export LANG
10 fi
11
12 if [ -n "$LC_ALL" ]; then
13 export LC_ALL
14 fi
15
16 if [ -n "$LINGUAS" ]; then
17 export LINGUAS
18 fi
19
20 # Execute the program.
21 eval exec "$4"
This page took 0.025559 seconds and 3 git commands to generate.