~ubuntu-branches/ubuntu/quantal/hv-kvp-daemon-init/quantal-proposed

« back to all changes in this revision

Viewing changes to hv_get_dns_info

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-12-17 04:44:09 UTC
  • mfrom: (1.2.4 raring)
  • Revision ID: package-import@ubuntu.com-20121217044409-6yz8j40crnhueowr
Tags: 0.3ubuntu4~12.10.0
Backport to quantal to support new LBM hv_kvp_daemon (LP: #1089970)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
# This example script parses /etc/resolv.conf to retrive DNS information.
 
4
# In the interest of keeping the KVP daemon code free of distro specific
 
5
# information; the kvp daemon code invokes this external script to gather
 
6
# DNS information.
 
7
# This script is expected to print the nameserver values to stdout.
 
8
# Each Distro is expected to implement this script in a distro specific
 
9
# fashion. For instance on Distros that ship with Network Manager enabled,
 
10
# this script can be based on the Network Manager APIs for retrieving DNS
 
11
# entries.
 
12
 
 
13
cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'