diff options
author | grog <grog@FreeBSD.org> | 1999-01-18 03:25:10 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-01-18 03:25:10 +0000 |
commit | 951a9667e518f77b18fd75e0be9f309d4724fccb (patch) | |
tree | 35ebe690caac547d2402011780d2bc8fafac4487 | |
parent | 7c7db9693b28f45c93b1f88c0aac4d232ce0828e (diff) | |
download | FreeBSD-src-951a9667e518f77b18fd75e0be9f309d4724fccb.zip FreeBSD-src-951a9667e518f77b18fd75e0be9f309d4724fccb.tar.gz |
Only start vinum if vinum_slices variable is non-empty
Reported-by: roberto
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.166 1999/01/11 09:07:38 asami Exp $ +# $Id: rc,v 1.167 1999/01/17 03:32:07 grog Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -27,7 +27,7 @@ if [ -f /etc/ccd.conf ]; then ccdconfig -C fi -if [ -n $vinum_slices ]; then +if [ -n "$vinum_slices" ]; then if [ -r /modules/vinum.ko ]; then # jkh paranoia kldload vinum vinum read $vinum_slices |