2012-10-04 15:33:40 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2012-11-22 18:16:30 +01:00
|
|
|
# This script parses /etc/resolv.conf to retrive DNS information.
|
2012-10-04 15:33:40 +02:00
|
|
|
# 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.
|
|
|
|
|
2012-11-22 18:16:30 +01:00
|
|
|
if test -r /etc/resolv.conf
|
|
|
|
then
|
|
|
|
awk -- '/^nameserver/ { print $2 }' /etc/resolv.conf
|
|
|
|
fi
|