if [ "$GX_ACCEPT_USE" = "true" ] ; then
        groovix-accept-use-watchdog&
        groovix-accept-use
        RC=$?
        echo groovix-accept-use: RC was $RC
        if [ $RC -ge 100 ] ; then
                echo "groovix-accept-use killed - probably by watchdog , allowing to continue"
        elif [ $RC -ge 30 ] ; then
                #this will exit the session and kick out back to the login screen
                exit 1
                #groovix-session-forced-exit "Acceptable Use Policy Not Accepted, Closing Session."
        fi
fi

