From c01b45c78de95b0f9dacf6930c58220280ff168b Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Tue, 21 Jan 2014 22:07:15 +0000 Subject: Ensure that GDM is reloaded on live media. With out this the locale settings are not reread and en_US is used for the whole session. I'm not 100% sure why the previous call now fails, but I suspect it could be due to /usr/sbin not being in the path due to /etc/ profile not being sourced early on (i.e. in the gdm binary) and thus this command fails to run. mga#11582 mga#12328 --- files/99dm-reload.xsetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/99dm-reload.xsetup b/files/99dm-reload.xsetup index 67d8ee8..f88368a 100755 --- a/files/99dm-reload.xsetup +++ b/files/99dm-reload.xsetup @@ -1,3 +1,3 @@ #!/bin/sh LOCK=/var/lock/reload-dm -[ -f "$LOCK" ] && rm -f $LOCK && if [ x"$RUNNING_UNDER_GDM" = xtrue ]; then nohup service dm restart; fi; +[ -f "$LOCK" ] && rm -f $LOCK && if [ x"$RUNNING_UNDER_GDM" = xtrue ]; then /usr/bin/systemctl --no-block restart prefdm.service; fi; -- cgit v1.2.1