diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2014-08-15 09:45:55 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2014-08-15 09:45:55 +0000 |
commit | d456edce580bd9591cf21a5eafffe29178e3f3f6 (patch) | |
tree | cc944a0a12c57979de7b6891ed93c98deeb5a243 /distrib/macppc | |
parent | 2451a51eda745e0e792e23116c2710ee424a4257 (diff) |
Align install.md files with installer style.
- { foo ; bar ; } -> { foo; bar; }
- if foo ; then -> if foo; then
OK halex@
Diffstat (limited to 'distrib/macppc')
-rw-r--r-- | distrib/macppc/ramdisk/install.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/distrib/macppc/ramdisk/install.md b/distrib/macppc/ramdisk/install.md index b6aaa0f9846..7e600bec582 100644 --- a/distrib/macppc/ramdisk/install.md +++ b/distrib/macppc/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.54 2013/11/16 18:37:27 rpe Exp $ +# $OpenBSD: install.md,v 1.55 2014/08/15 09:45:54 rpe Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ MDXAPERTURE=2 NCPU=$(sysctl -n hw.ncpufound) -((NCPU > 1)) && { DEFAULTSETS="bsd bsd.rd bsd.mp" ; SANESETS="bsd bsd.mp" ; } +((NCPU > 1)) && { DEFAULTSETS="bsd bsd.rd bsd.mp"; SANESETS="bsd bsd.mp"; } md_installboot() { local _disk=$1 @@ -115,11 +115,11 @@ $(fdisk $_disk) __EOT fdisk -e $_disk fdisk $_disk | grep -q '^..: 06 ' || \ - { echo "\nNo DOS (id 06) partition!\n" ; continue ; } + { echo "\nNo DOS (id 06) partition!\n"; continue; } fdisk $_disk | grep -q '^\*.: 06 ' || \ - { echo "\nNo active DOS partition!\n" ; continue ; } + { echo "\nNo active DOS partition!\n"; continue; } fdisk $_disk | grep -q "^..: A6 " || \ - { echo "\nNo OpenBSD (id A6) partition!\n" ; continue ; } + { echo "\nNo OpenBSD (id A6) partition!\n"; continue; } break ;; o*|O*) break ;; esac @@ -136,7 +136,7 @@ md_prep_HFS() { _q= _d=Modify md_has_hfs_openbsd $_disk && \ - { _q="Use the (O)penBSD partition, " ; _d=OpenBSD ; } + { _q="Use the (O)penBSD partition, "; _d=OpenBSD; } pdisk -l /dev/${_disk}c ask "$_q(M)odify a partition or (A)bort?" "$_d" case $resp in |