diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-03-31 17:30:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-03-31 17:30:32 +0000 |
commit | 0ac3ae1f43dc0de4f4a64dc45569c38ff5885946 (patch) | |
tree | 3ec610b10a08e9169ea99b34e483f0202affecba /distrib/vax | |
parent | d4c4b170da36ab5d761959ee920ea57a18ac559e (diff) |
bit of shrinkage, krw ok
Diffstat (limited to 'distrib/vax')
-rw-r--r-- | distrib/vax/install.md | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/distrib/vax/install.md b/distrib/vax/install.md index ccada6c154e..fb11cb90fba 100644 --- a/distrib/vax/install.md +++ b/distrib/vax/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.8 2002/03/19 08:43:56 hugh Exp $ +# $OpenBSD: install.md,v 1.9 2002/03/31 17:30:31 deraadt Exp $ # $NetBSD: install.md,v 1.3.2.5 1996/08/26 15:45:28 gwr Exp $ # # @@ -36,7 +36,6 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # - # # machine dependent section of installation/upgrade script. # @@ -79,8 +78,8 @@ md_get_cddevs() { } md_get_partition_range() { - # return range of valid partition letters - echo [a-p] + # return range of valid partition letters + echo [a-p] } md_questions() { @@ -124,14 +123,11 @@ md_prep_disklabel() md_checkfordisklabel $_disk case $? in - 0) - ;; - 1) - echo WARNING: Label on disk $_disk has no label. You will be creating a new one. + 0) ;; + 1) echo WARNING: Label on disk $_disk has no label. You will be creating a new one. echo ;; - 2) - echo WARNING: Label on disk $_disk is corrupted. You will be repairing. + 2) echo WARNING: Label on disk $_disk is corrupted. You will be repairing. echo ;; esac |