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/amd64/common | |
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/amd64/common')
-rw-r--r-- | distrib/amd64/common/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/amd64/common/install.md b/distrib/amd64/common/install.md index 0d9c9353fb2..74580dd6b93 100644 --- a/distrib/amd64/common/install.md +++ b/distrib/amd64/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.35 2014/07/20 20:12:41 deraadt Exp $ +# $OpenBSD: install.md,v 1.36 2014/08/15 09:45:54 rpe Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -37,10 +37,10 @@ MDXDM=y MDLID=y 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() { - if ! installboot -r /mnt ${1} ; then + if ! installboot -r /mnt ${1}; then echo "\nFailed to install bootblocks." echo "You will not be able to boot OpenBSD from ${1}." exit |