hyper-v/hyper-v.tools.hv.hv_get_dns_info.sh
Olaf Hering 42570cdfd6 - update hv_get_dhcp_info to work with our ifcfg [bnc#790469]
- remove cat usage from hv_get_dns_info
- add quoting to hv_set_ifconfig to make it more robust

OBS-URL: https://build.opensuse.org/package/show/Virtualization/hyper-v?expand=0&rev=44
2012-11-22 17:16:30 +00:00

17 lines
636 B
Bash

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