diff options
author | Ray Strode <rstrode@redhat.com> | 2015-03-09 12:54:04 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2015-03-09 12:56:22 -0400 |
commit | 41fdcae9f67bea3c770d42051bbfbb5acbf4108b (patch) | |
tree | 320cc59db0577b154cfff2f01a676f37aff704ab /data | |
parent | e726e082283f9a0317f2c49261c6c6429ff4d487 (diff) | |
download | gdm-41fdcae9f67bea3c770d42051bbfbb5acbf4108b.tar.gz |
systemd: don't require lang file to exist
commit fbb922cfcf4e389b0aa416d9a81c45f8f938f104 made sure
to source /etc/default/locale on debian so that GDM gets
started with the correct locale.
Unfortunately, now if that file doesn't exist (which is entirely
legitimate) then GDM won't start.
This commit makes sure to still start GDM, even if the file couldn't
be sourced.
https://bugzilla.gnome.org/show_bug.cgi?id=745868
Diffstat (limited to 'data')
-rw-r--r-- | data/gdm.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/gdm.service.in b/data/gdm.service.in index 3a0b2370..3c86da7b 100644 --- a/data/gdm.service.in +++ b/data/gdm.service.in @@ -22,7 +22,7 @@ IgnoreSIGPIPE=no BusName=org.gnome.DisplayManager StandardOutput=syslog StandardError=inherit -EnvironmentFile=@LANG_CONFIG_FILE@ +EnvironmentFile=-@LANG_CONFIG_FILE@ [Install] Alias=display-manager.service |