#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /home/cvsroot/gentoo-src/rc-scripts/init.d/switch,v 1.2 2003/01/06 21:32:43 azarah Exp $

start() {
	ebegin "Server/Node high-level initialisation"
	if checkserver
	then
		ewarn "  Server detected." && /sbin/rc server_default
	else
		ewarn "  Node detected." && /sbin/rc node_default
	fi
	eend 0
}

