K. Y. Srinivasan | 2aea3c7 | 2012-09-05 13:50:10 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0 |
K. Y. Srinivasan | 2aea3c7 | 2012-09-05 13:50:10 -0700 | [diff] [blame] | 3 | |
| 4 | # This example script retrieves the DHCP state of a given interface. |
| 5 | # In the interest of keeping the KVP daemon code free of distro specific |
| 6 | # information; the kvp daemon code invokes this external script to gather |
| 7 | # DHCP setting for the specific interface. |
| 8 | # |
| 9 | # Input: Name of the interface |
| 10 | # |
| 11 | # Output: The script prints the string "Enabled" to stdout to indicate |
| 12 | # that DHCP is enabled on the interface. If DHCP is not enabled, |
| 13 | # the script prints the string "Disabled" to stdout. |
| 14 | # |
| 15 | # Each Distro is expected to implement this script in a distro specific |
Adrian Vladu | 2d35c66 | 2019-05-06 16:51:24 +0000 | [diff] [blame] | 16 | # fashion. For instance, on Distros that ship with Network Manager enabled, |
K. Y. Srinivasan | 2aea3c7 | 2012-09-05 13:50:10 -0700 | [diff] [blame] | 17 | # this script can be based on the Network Manager APIs for retrieving DHCP |
| 18 | # information. |
| 19 | |
| 20 | if_file="/etc/sysconfig/network-scripts/ifcfg-"$1 |
| 21 | |
| 22 | dhcp=$(grep "dhcp" $if_file 2>/dev/null) |
| 23 | |
| 24 | if [ "$dhcp" != "" ]; |
| 25 | then |
| 26 | echo "Enabled" |
| 27 | else |
| 28 | echo "Disabled" |
| 29 | fi |