#!/bin/sh
# iterate over the helpers directory
#
# ident "@(#)InitDefault.sh	1.5 09/07/31 SMI"
#
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#


PATH=/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
