]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
Pointless subshell dropped
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 1 Nov 2006 13:09:28 +0000 (13:09 +0000)
committerElan Ruusamäe <glen@pld-linux.org>
Wed, 1 Nov 2006 13:09:28 +0000 (13:09 +0000)
svn-id: @7930

sysconfig/network-scripts/ifup

index c7fe58496d9b34132d37f2b3f5bb26bc405f2f2d..90b2de90d46763db350fa02893d7e4beb730cdd1 100755 (executable)
@@ -76,7 +76,7 @@ if [ -x "$OTHERSCRIPT" ]; then
 fi
 
 # is this device available? (this catches PCMCIA devices for us)
-if ! (/sbin/ip link set multicast ${MULTICAST} dev ${DEVICE} > /dev/null 2>&1); then
+if ! /sbin/ip link set multicast ${MULTICAST} dev ${DEVICE} > /dev/null 2>&1; then
        nls "Delaying %s initialization" ${DEVICE}
        exit 1
 fi
This page took 0.049675 seconds and 4 git commands to generate.