#!/bin/sh

if [ -e /etc/default/ppp ];then
        source /etc/default/ppp
fi;

if [ "${DHCP6:-1}" == "1" ];then
	/etc/init.d/netconf dhcpcd ${PPP_IFACE-ppp0}
fi;
