aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-01-12 20:34:55 +0000
committerBill Nottingham <notting@redhat.com>2005-01-12 20:34:55 +0000
commitb3fa00bf7b302ee5bcc76e7864753c924c1aecb7 (patch)
tree66a86fd392675d9991c3e9326fa7b106b5ea1271
parentaeddadc52c0fac4be094d72d7143666c958e318c (diff)
downloadinitscripts-b3fa00bf7b302ee5bcc76e7864753c924c1aecb7.tar
initscripts-b3fa00bf7b302ee5bcc76e7864753c924c1aecb7.tar.gz
initscripts-b3fa00bf7b302ee5bcc76e7864753c924c1aecb7.tar.bz2
initscripts-b3fa00bf7b302ee5bcc76e7864753c924c1aecb7.tar.xz
initscripts-b3fa00bf7b302ee5bcc76e7864753c924c1aecb7.zip
fix ONxxx (#136531, <cww@redhat.com>)
-rwxr-xr-xsysconfig/network-scripts/ifup4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index 04c2e620..eecc3f8e 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -44,11 +44,11 @@ fi
source_config
-if [ "foo$2" = "fooboot" -a "${ONBOOT}" = "no" -o "${ONBOOT}" = "NO" ]
+if [ "foo$2" = "fooboot" ] && [ "${ONBOOT}" = "no" -o "${ONBOOT}" = "NO" ]
then
exit 0
fi
-if [ -n "$IN_HOTPLUG" -a "${HOTPLUG}" = "no" -o "${HOTPLUG}" = "NO" ]
+if [ -n "$IN_HOTPLUG" ] && [ "${HOTPLUG}" = "no" -o "${HOTPLUG}" = "NO" ]
then
exit 0
fi