#!/bin/sh12# This example script parses /etc/resolv.conf to retrive DNS information.3# In the interest of keeping the KVP daemon code free of distro specific4# information; the kvp daemon code invokes this external script to gather5# DNS information.6# This script is expected to print the nameserver values to stdout.7# Each Distro is expected to implement this script in a distro specific8# fashion. For instance on Distros that ship with Network Manager enabled,9# this script can be based on the Network Manager APIs for retrieving DNS10# entries.1112exec awk '/^nameserver/ { print $2 }' /etc/resolv.conf 2>/dev/null131415