# do nothing if no static / manual resolv.conf config or empty
if [ ! -f /etc/network/resolv.conf.static ] || ! grep -qv '^[[:space:]]*$' /etc/network/resolv.conf.static; then
    return
fi

# the static / manual resolv.conf takes precedence => override the make_resol_conf function
make_resolv_conf(){
    :
}
