mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
2d35c66036
Fix typos in the HyperV toolchain. Signed-off-by: Adrian Vladu <avladu@cloudbasesolutions.com> Cc: "K. Y. Srinivasan" <kys@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Stephen Hemminger <sthemmin@microsoft.com> Cc: Sasha Levin <sashal@kernel.org> Cc: Alessandro Pilotti <apilotti@cloudbasesolutions.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
29 lines
931 B
Bash
Executable file
29 lines
931 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# This example script retrieves the DHCP state of a given interface.
|
|
# In the interest of keeping the KVP daemon code free of distro specific
|
|
# information; the kvp daemon code invokes this external script to gather
|
|
# DHCP setting for the specific interface.
|
|
#
|
|
# Input: Name of the interface
|
|
#
|
|
# Output: The script prints the string "Enabled" to stdout to indicate
|
|
# that DHCP is enabled on the interface. If DHCP is not enabled,
|
|
# the script prints the string "Disabled" 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 DHCP
|
|
# information.
|
|
|
|
if_file="/etc/sysconfig/network-scripts/ifcfg-"$1
|
|
|
|
dhcp=$(grep "dhcp" $if_file 2>/dev/null)
|
|
|
|
if [ "$dhcp" != "" ];
|
|
then
|
|
echo "Enabled"
|
|
else
|
|
echo "Disabled"
|
|
fi
|