#!/bin/sh
#
# $Id: dhcrelay.sh,v 1.1.1.1.2.1 2002/02/11 03:44:26 eparis Exp $
#

# dhcrelay.sh - a front end shell script that calls dhcrelay-2.2.x
#	or dhcrelay-2.0.x depending on the kernel that is currently
#	running.

#	Which version
case `uname -r` in
1.*)
	# Give me a break...
	echo "DHCP requires kernel 2.x"
	exit 255
	;;

2.0.*)
	# 2.0 uses the paramters as passed to us.  Just exec the real McCoy.
	exec /usr/sbin/dhcrelay-2.0.x "$@"
	;;
2.[1234].*)
	exec /usr/sbin/dhcrelay-2.2.x "$@"
	;;
*)
	# Huh?
	echo "Unrecognized kernel version"
	exit 255
	;;
esac
