diff options
author | peter <peter@FreeBSD.org> | 1999-01-26 04:59:43 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-01-26 04:59:43 +0000 |
commit | 101778f606bea11a414cdde70c9fb6708c6c5bab (patch) | |
tree | 014b9d28242da206b2a618dafe9d6bb7ead8753a /etc/rc | |
parent | 5a8418d8d3ce27704136703efdf496fbca4b0cab (diff) | |
download | FreeBSD-src-101778f606bea11a414cdde70c9fb6708c6c5bab.zip FreeBSD-src-101778f606bea11a414cdde70c9fb6708c6c5bab.tar.gz |
The vinum setup tool automatically loads the vinum module if it's needed,
there is no need to duplicate the logic here.
XXX rc.conf needs to be read sooner..
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.170 1999/01/25 04:40:53 dillon Exp $ +# $Id: rc,v 1.171 1999/01/25 18:07:25 dillon Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -39,12 +39,7 @@ if [ "X$skip_diskconf" != "XYES" -a -f /etc/ccd.conf ]; then fi if [ -n "$vinum_slices" ]; then - if [ -r /modules/vinum.ko ]; then # jkh paranoia - kldload vinum - vinum read $vinum_slices - else - echo "Can't find /modules/vinum.ko" - fi + vinum read $vinum_slices fi if [ "X$skip_diskconf" != "XYES" ]; then |