aboutsummaryrefslogtreecommitdiffstats
path: root/sbin/fndSession
blob: 68251c22c7c6d847a16050d9f25e42db7005f15d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# fndSession (c) MandrakeSoft, Chmouel Boudjnah <chmouel@mandrakesoft.com>
## FindSession for kdm and gdm.

[ -x /usr/sbin/chksession ] || {
    echo "I can't find /usr/sbin/chksession"
    echo "check your installation"
    exit 1
}

if [ -e /usr/share/config/kdm/kdmrc ];then
LIST="`/usr/sbin/chksession -k`" perl -pi -e 's|^SessionTypes=.*|$ENV{LIST}|'\
    /usr/share/config/kdm/kdmrc
fi

if [ -d /etc/X11/dm/Sessions ];then
	/usr/sbin/chksession -g
fi