aboutsummaryrefslogblamecommitdiff
path: root/contrib/hyperv/tools/scripts/hv_get_dns_info
blob: 7a34440fd90277fdd9977295c82f6aaba893b1e0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                   
#!/bin/sh
# This script parses /etc/resolv.conf to retrive DNS information.
# Khe kvp daemon code invokes this external script to gather
# DNS information.
# This script is expected to print the nameserver values to stdout.

#if test -r /etc/resolv.conf
#then	
#	awk -- '/^nameserver/ { print $2 }' /etc/resolv.conf
#fi
cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'