blob: 16bad67ff45ac04e60b872f9b0f1fd19a6263cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
#
# A script so that
# 1) we read the standard system env vars
# 2) syadmins/integrators can add their own private options etc...
test -f /etc/profile && . /etc/profile
# Make sure LANG is set
#
if [ -z "$LANG" ]
then
if [ -f /etc/sysconfig/language ]
then
LANG=`. /etc/sysconfig/language; echo $RC_LANG`
export LANG
fi
fi
exec @sbindir@/gdm-binary "$@"
|