aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/sbin/fndSession
diff options
context:
space:
mode:
authorFrederic Crozat <fcrozat@mandriva.com>2007-08-24 17:55:59 +0000
committerFrederic Crozat <fcrozat@mandriva.com>2007-08-24 17:55:59 +0000
commitd25050b4c3c792bdec8c65767a91266ed2659b56 (patch)
treef54d9e1b6156bf2962c6368ced72a9e617e970ca /trunk/sbin/fndSession
parent16c61ccf6d1fdd4cd9c98dfd430d09f88d9c5cdf (diff)
parent8d432090e7e36f007964fb1ca3c73390f7b1b95f (diff)
downloadcommon-data-2008_0_2mdv.tar
common-data-2008_0_2mdv.tar.gz
common-data-2008_0_2mdv.tar.bz2
common-data-2008_0_2mdv.tar.xz
common-data-2008_0_2mdv.zip
V2008_0_2mdvV2008_0_2mdv
Diffstat (limited to 'trunk/sbin/fndSession')
-rwxr-xr-xtrunk/sbin/fndSession29
1 files changed, 0 insertions, 29 deletions
diff --git a/trunk/sbin/fndSession b/trunk/sbin/fndSession
deleted file mode 100755
index 4fd7c7c..0000000
--- a/trunk/sbin/fndSession
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-#---------------------------------------------------------------
-# Project : Mandriva Linux
-# Module : sbin
-# File : fndSession
-# Version : $Id$
-# Author : Frederic Lepied
-# Created On : Mon May 30 10:43:12 2005
-# Purpose : find sessions for display managers
-#---------------------------------------------------------------
-
-umask 022
-
-FILES=`/bin/ls /etc/X11/dm.d/*.conf 2> /dev/null`
-
-if [ $? != 0 ]; then
- exit 0
-fi
-
-for f in $FILES; do
- EXEC=
- FNDSESSION_EXEC=
- eval `grep 'EXEC=' "$f"`
- if [ -x "$EXEC" -a -n "$FNDSESSION_EXEC" ]; then
- $FNDSESSION_EXEC
- fi
-done
-
-# fndSession ends here