8b376d62d8
Integrate Egbert's /etc/init.d/xdm changes + cleanup + update to 3.1.90 OBS-URL: https://build.opensuse.org/request/show/81172 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gdm?expand=0&rev=173
9 lines
224 B
Bash
9 lines
224 B
Bash
#!/bin/sh
|
|
|
|
if test ! -x "${GDMFLEXISERVER:-/usr/lib/gdm/gdmflexiserver}"; then
|
|
echo "No gdmflexiserver implementation found. Maybe install gdm?" >&2
|
|
exit 1
|
|
else
|
|
exec "${GDMFLEXISERVER:-/usr/lib/gdm/gdmflexiserver}"
|
|
fi
|