diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 01:44:44 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 01:44:56 +0000 |
commit | 23f975dfcd95df2b06ab86e13072f5e9cba5c9d2 (patch) | |
tree | 02dd640a0e038a898201d5950eddab380b4e770a /net | |
parent | ca6019031af96eabb471080e91374b44f176d113 (diff) |
checkbashisms: Fix redirection order.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/ccwgroup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ccwgroup.sh b/net/ccwgroup.sh index 9716c3c5..aaf7de6b 100644 --- a/net/ccwgroup.sh +++ b/net/ccwgroup.sh @@ -21,7 +21,7 @@ ccwgroup_load_modules() # verify the specific interface is supported if [ ! -d /sys/bus/ccwgroup/drivers/$1 ] ; then - modprobe $1 >& /dev/null + modprobe $1 >/dev/null 2>&1 if [ ! -d /sys/bus/ccwgroup/drivers/$1 ] ; then eerror "$1 support missing in kernel" return 1 |