From 0e1e91b8865dfb3a2795e689e79a4b0cfa0e2104 Mon Sep 17 00:00:00 2001 From: "K. Y. Srinivasan" Date: Tue, 4 Sep 2012 14:46:35 -0700 Subject: [PATCH] --- yaml --- r: 324399 b: refs/heads/master c: d82c37ce6896734a4a2a9b74c22084fe47824466 h: refs/heads/master i: 324397: b64c6703b0d9c5ab8237e4b470efb8ecfdc7e4dd 324395: e6bb767f0d527093f058c7941927a8b4043a4f4a 324391: aac0c226a78243c2c382f7c595273b1766170cb6 324383: 59d3203e5b8264befd89ec2c4801b824b4ac3928 v: v3 --- [refs] | 2 +- trunk/tools/hv/hv_get_dns_info.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100755 trunk/tools/hv/hv_get_dns_info.sh diff --git a/[refs] b/[refs] index 8f1c48922e78..669038aef924 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d0cbc156a7689348e56ac9b871c988b59b9f9ff0 +refs/heads/master: d82c37ce6896734a4a2a9b74c22084fe47824466 diff --git a/trunk/tools/hv/hv_get_dns_info.sh b/trunk/tools/hv/hv_get_dns_info.sh new file mode 100755 index 000000000000..058c17b46ffc --- /dev/null +++ b/trunk/tools/hv/hv_get_dns_info.sh @@ -0,0 +1,13 @@ +#!/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 }'