-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 324430 b: refs/heads/master c: 2aea3c7 h: refs/heads/master v: v3
- Loading branch information
K. Y. Srinivasan
authored and
Greg Kroah-Hartman
committed
Sep 10, 2012
1 parent
bf4bcaa
commit 2050418
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7083909023bbe29b3176e92d2d089def1aa7aa1e | ||
refs/heads/master: 2aea3c712826824dbbbaa7b9c0b70936819304b4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
# 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 |