# PRE: return
#
update {
	control:Auth-Type = 'Accept'
}

group {
	# Section should exit after this statement
	ok {
		ok = return
	}

	# This entry should never be reached
	update {
		reply:Reply-Message := 'fail'
	}
}

# We should continue processing after the previous group.
update {
	reply:Reply-Message += 'pass'	
}
