Blame SOURCES/hv_get_dns_info.sh

146f51
#!/bin/bash
146f51
146f51
# This example script parses /etc/resolv.conf to retrive DNS information.
146f51
# In the interest of keeping the KVP daemon code free of distro specific
146f51
# information; the kvp daemon code invokes this external script to gather
146f51
# DNS information.
146f51
# This script is expected to print the nameserver values to stdout.
146f51
# Each Distro is expected to implement this script in a distro specific
146f51
# fashion. For instance on Distros that ship with Network Manager enabled,
146f51
# this script can be based on the Network Manager APIs for retrieving DNS
146f51
# entries.
146f51
146f51
cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'