]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- renamed initscript to rc.init
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Thu, 2 Sep 1999 12:13:32 +0000 (12:13 +0000)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Thu, 2 Sep 1999 12:13:32 +0000 (12:13 +0000)
svn-id: @500

rc.d/rc.init [new file with mode: 0755]

diff --git a/rc.d/rc.init b/rc.d/rc.init
new file mode 100755 (executable)
index 0000000..e8bd10e
--- /dev/null
@@ -0,0 +1,22 @@
+# $Id: rc.init,v 1.1 1999/09/02 12:13:32 misiek Exp $
+# This script is started by init ...
+
+if [ -r /etc/sysconfig/i18n ]; then
+. /etc/sysconfig/i18n
+fi
+
+if [ -n "$LANG" ]; then
+export LANG
+fi
+
+if [ -n "$LC_ALL" ]; then
+export LC_ALL
+fi
+
+if [ -n "$LINGUAS" ]; then
+export LINGUAS
+fi
+
+# Execute the program.
+eval exec "$4"
+               
This page took 0.162876 seconds and 4 git commands to generate.