update to 3.38.1 - TW should be ready OBS-URL: https://build.opensuse.org/request/show/842880 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gdm?expand=0&rev=466
13 lines
260 B
Plaintext
13 lines
260 B
Plaintext
gdm_vars() {
|
|
case "${DISPLAYMANAGER##*/}" in
|
|
gdm|GDM|Gnome|GNOME)
|
|
RELOADSIGNAL="-USR1"
|
|
DISPLAYMANAGER=/usr/sbin/gdm
|
|
PIDFILE=/run/gdm/gdm.pid
|
|
return 0 ;;
|
|
*) return 1 ;;
|
|
esac
|
|
|
|
return 1
|
|
}
|