diff options
author | Bill Nottingham <notting@redhat.com> | 2006-04-03 21:33:44 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-04-03 21:33:44 +0000 |
commit | 63163347b938429d7b9f3f80dda7f52841fbce02 (patch) | |
tree | d119ab6309de8b6ad9b1c963d5af29874d2b23c6 | |
parent | d4bb0dd0594cb3a74f836954f97f9511b5fc22f1 (diff) | |
download | initscripts-63163347b938429d7b9f3f80dda7f52841fbce02.tar initscripts-63163347b938429d7b9f3f80dda7f52841fbce02.tar.gz initscripts-63163347b938429d7b9f3f80dda7f52841fbce02.tar.bz2 initscripts-63163347b938429d7b9f3f80dda7f52841fbce02.tar.xz initscripts-63163347b938429d7b9f3f80dda7f52841fbce02.zip |
fix redirect (#187505)
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 332527a0..faab107e 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -46,7 +46,7 @@ case "$1" in [ -n "$NETDEVFSTAB" ] && { if [ -x /sbin/lvm.static ]; then - if /sbin/lvm.static vgscan > /dev/null 1>&1 ; then + if /sbin/lvm.static vgscan > /dev/null 2>&1 ; then action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y fi fi |