#!/bin/ksh -p
# iterate over the helpers directory
#
# ident "@(#)InitDefault.ksh	1.6 10/03/30 SMI"
#
# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#


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


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

exit 0
