diff options
author | grog <grog@FreeBSD.org> | 1999-01-31 04:28:51 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-01-31 04:28:51 +0000 |
commit | acd7d67b0f72331fb191bac9e2d22068c496c86d (patch) | |
tree | 192dc67a238088dae5f5dbe7264cffa9454506e8 /etc/rc | |
parent | f157bdc418b886572f5b8afd86b7304304f38cc2 (diff) | |
download | FreeBSD-src-acd7d67b0f72331fb191bac9e2d22068c496c86d.zip FreeBSD-src-acd7d67b0f72331fb191bac9e2d22068c496c86d.tar.gz |
Change variable name vinum_slices to vinum_drives to match the variable
we set in rc.conf.
Background: the `vinum read' command has changed. For a short period
of time, it required the names of the slices on which vinum was
stored. Now it requires the names of the drives.
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.173 1999/01/26 05:14:36 peter Exp $ +# $Id: rc,v 1.174 1999/01/29 06:18:12 dillon Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -45,8 +45,8 @@ if [ "X$skip_diskconf" != "XYES" -a -f /etc/ccd.conf ]; then ccdconfig -C fi -if [ "X$skip_diskconf" != "XYES" -a -n "$vinum_slices" ]; then - vinum read $vinum_slices +if [ "X$skip_diskconf" != "XYES" -a -n "$vinum_drives" ]; then + vinum read $vinum_drives fi if [ "X$skip_diskconf" != "XYES" ]; then |