~noskcaj/ubuntu/vivid/gdm/3.14.1

« back to all changes in this revision

Viewing changes to daemon/gdm.in

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, Tim Lunn, Jeremy Bicha, Robert Ancell
  • Date: 2013-05-31 22:36:08 UTC
  • mfrom: (1.4.55)
  • Revision ID: package-import@ubuntu.com-20130531223608-33uo85niksee5460
Tags: 3.8.1.1-0ubuntu1
[ Tim Lunn ]
* New upstream release
* debian/patches/ubuntu_dont_catch_sigsegv.patch:
  - Dropped, obsolete
* debian/rules:
  - Don't rename gdm binary since that's already been
    done in the new version

[ Jeremy Bicha ]
* debian/control.in: Bump minimum glib
* debian/watch: Watch for unstable releases
* debian/patches/00git_logind_check.patch:
  - Dropped, applied in new release
* debian/patches/08_frequent-users_greeter.patch: Refreshed

[ Robert Ancell ]
* New upstream release
* debian/patches/ubuntu_daemon_autologin_tracking.patch:
* debian/patches/ubuntu_ensure_dirs.patch:
* debian/patches/ubuntu_slave-only-set-up-autologin.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

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