#!/bin/sh
# Config file for dhcpcd.


getdnsvars()
{

    case ${INTERFACE} in
        eth0) 

        # Uncomment this to allow dhcpcd to set the DNS servers in /etc/resolv.conf
        SET_DNS='yes'

        # Uncomment this to allow dhcpcd to set domainname of the host to the
        # domainname option supplied by DHCP server.
        SET_DOMAIN='yes'

        #DO_DDNS='yes'
        ;;

        eth0.32)
        SET_DNS='yes'
        SET_DOMAIN='yes'
        ;;
        *)
        ;;

    esac

}
