#!/system/bin/sh

#author: cedesmith

PATH=/sbin:/system/sbin:/system/bin:/system/xbin

setprop net.ppp0.dns1 $DNS1
setprop net.ppp0.dns2 $DNS2


#added by tytung

/bin/touch /etc/ppp/ppp0.pid
/bin/chmod 777 /etc/ppp/ppp0.pid

# Create link for resolv.conf (generated by pppd)
ln -s /etc/ppp/resolv.conf /etc/resolv.conf
echo "nameserver $DNS1" > /etc/ppp/resolv.conf
echo "nameserver $DNS2" >> /etc/ppp/resolv.conf


