Olaf Hering
8709575eff
- update kv_kvp_daemon to 3.7-rc1 state [fate#31441] support KVP IP Injection, helper scripts go to /usr/lib/hyper-v/bin: hv_get_dhcp_info, hv_get_dns_info, hv_set_ifconfig - remove usage of absolute paths in runlevel script OBS-URL: https://build.opensuse.org/package/show/Virtualization/hyper-v?expand=0&rev=31
14 lines
622 B
Bash
14 lines
622 B
Bash
#!/bin/bash
|
|
|
|
# This example 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.
|
|
|
|
cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'
|