tools/hv/hv_get_dns_info.sh

Source file repositories/reference/linux-study-clean/tools/hv/hv_get_dns_info.sh

File Facts

System
Linux kernel
Corpus path
tools/hv/hv_get_dns_info.sh
Extension
.sh
Size
619 bytes
Lines
14
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: tools
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#!/bin/sh

# 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.

exec awk '/^nameserver/ { print $2 }' /etc/resolv.conf 2>/dev/null

Annotation

Implementation Notes