#!/bin/ksh -p
#
# ident "@(#)PostSessionDefault.ksh	1.6 10/02/19 SMI"
#
# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

PATH="/usr/bin/X11:/usr/X11R6/bin:/opt/X11R6/bin:$PATH:/bin:/usr/bin"

for i in /etc/opt/SUNWut/gdm/SunRayPostSession/helpers/*
do
	if [ -x $i ]; then
	    . $i
	fi
done
exit 0
