Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
#!/bin/sh
2
 
3
for XSESSION in /etc/X11/xinit/Xsession /etc/X11/xdm/Xsession ; do
4
  test -x $XSESSION && exec $XSESSION ${1+"$@"}
5
done
6
 
7
echo "/etc/X11/xinit/Xsession and /etc/X11/xdm/Xsession not found."
8
exit 1