#! /bin/sh

if test "$5" = "update"; then
	echo [MW] ipv6:update,no need to notify
    exit 1
fi

if test "$1" = "::"; then
	echo [MW] ipv6 not add  $1!
	exit 1
else
	echo $5 address : $1 , prefix $2 of len $3 > ./notify_log
	echo [MW] ipv6 dhcpv6 address acquired!
	exit 0
fi


