146f51
#!/bin/bash
146f51
# SPDX-License-Identifier: GPL-2.0
146f51
146f51
# This example script retrieves the DHCP state of a given interface.
146f51
# In the interest of keeping the KVP daemon code free of distro specific
146f51
# information; the kvp daemon code invokes this external script to gather
146f51
# DHCP setting for the specific interface.
146f51
#
146f51
# Input: Name of the interface
146f51
#
146f51
# Output: The script prints the string "Enabled" to stdout to indicate
146f51
#	that DHCP is enabled on the interface. If DHCP is not enabled,
146f51
#	the script prints the string "Disabled" to stdout.
146f51
#
146f51
# Each Distro is expected to implement this script in a distro specific
146f51
# fashion. For instance on Distros that ship with Network Manager enabled,
146f51
# this script can be based on the Network Manager APIs for retrieving DHCP
146f51
# information.
146f51
146f51
if_file="/etc/sysconfig/network-scripts/ifcfg-"$1
146f51
146f51
dhcp=$(grep "dhcp" $if_file 2>/dev/null)
146f51
146f51
if [ "$dhcp" != "" ];
146f51
then
146f51
echo "Enabled"
146f51
else
146f51
echo "Disabled"
146f51
fi