summaryrefslogtreecommitdiff
path: root/tools/hv/hv_get_dns_info.sh
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2012-09-04 14:46:35 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-04 15:59:27 -0700
commitd82c37ce6896734a4a2a9b74c22084fe47824466 (patch)
treea87517115c1f48fd21d362b89b97677cd7070069 /tools/hv/hv_get_dns_info.sh
parentd0cbc156a7689348e56ac9b871c988b59b9f9ff0 (diff)
Tools: hv: Add an example script to retrieve DNS entries
To keep the KVP daemon code free of distro specific details, we invoke an external script to retrieve the DNS entries. This is an example script that was used to test the KVP code. This script has to be implemented in a Distro specific fashion. For instance on distros that ship with Network Manager enabled, this script can be based on NM APIs. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv/hv_get_dns_info.sh')
-rwxr-xr-xtools/hv/hv_get_dns_info.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/hv/hv_get_dns_info.sh b/tools/hv/hv_get_dns_info.sh
new file mode 100755
index 000000000000..058c17b46ffc
--- /dev/null
+++ b/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 }'