Comment 13 for bug 585853

Revision history for this message
Thorin Hopkins (topy) wrote : Re: [Lucid] Not possible to use xdm, only can use gdm

Slightly better workaround:

In "/etc/init.d/slim" replace:

start-stop-daemon --start $SSD_START_ARGS ||echo -n " already running"

with:

if [ "$(pidof slim)" ]
then
  echo -n " already running"
else
  exec /usr/bin/slim
fi