#!/bin/sh
#
# DHCP client has got a new IPV4 address: assign it to the interface
#
case $reason in
	'BOUND')
		ifconfig $interface $new_ip_address
	;;
	'RENEW')
		ifconfig $interface $new_ip_address
	;;
	*)
esac
