]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
moved here from SysVinit package
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 2 Aug 1999 14:51:34 +0000 (14:51 +0000)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 2 Aug 1999 14:51:34 +0000 (14:51 +0000)
svn-id: @459

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

diff --git a/rc.d/initscript b/rc.d/initscript
new file mode 100755 (executable)
index 0000000..755b388
--- /dev/null
@@ -0,0 +1,21 @@
+# 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.036485 seconds and 4 git commands to generate.