summaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/net.hotplug
diff options
context:
space:
mode:
Diffstat (limited to 'sysconfig/network-scripts/net.hotplug')
-rwxr-xr-xsysconfig/network-scripts/net.hotplug5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/net.hotplug b/sysconfig/network-scripts/net.hotplug
index 543fb541..f41c8e8e 100755
--- a/sysconfig/network-scripts/net.hotplug
+++ b/sysconfig/network-scripts/net.hotplug
@@ -17,7 +17,7 @@ add|register)
fi
case $INTERFACE in
- # interfaces that are registered after being "up" (?)
+ # interfaces that are brought up as a part of configuration
ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*)
exit 0
;;
@@ -38,12 +38,11 @@ add|register)
remove|unregister)
case $INTERFACE in
- # interfaces that are unregistered after being "down" (?)
+ # interfaces that are brought down as part of deconfiguration
ppp*|ippp*|isdn*|plip*|lo*|irda*|dummy*|ipsec*|tun*|tap*)
exit 0
;;
*)
- # RedHat and similar
export IN_HOTPLUG=1
if [ -x /sbin/ifdown ]; then
exec /sbin/ifdown $INTERFACE