diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2018-07-06 19:16:29 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2018-07-06 19:16:29 +0000 |
commit | 6fb04b0d512151ee258129c5dbe08de642907d60 (patch) | |
tree | b2e590c957f1027d80bfa6315340682dc180a9ab /distrib | |
parent | 92d6b220b8fa497b019b22b270cb489771448176 (diff) |
Tweak comment
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index cbad3528c00..72e65d7e202 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1076 2018/07/02 20:47:46 rpe Exp $ +# $OpenBSD: install.sub,v 1.1077 2018/07/06 19:16:28 rpe Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -395,16 +395,10 @@ disk_has() { fi } -# Handle disklabel auto-layout during interactive installation and -# autopartitioning during unattended installation for the root disk. -# In the latter case, ask for and download autopartitioning template. -# Abort unattended installation if autopartitioning fails. -# -# Parameters: -# -# $1 = disk -# $2 = /path/to/fstab -# +# Handle disklabel auto-layout for the root disk $1 during interactive install +# and autopartitioning during unattended install by asking for and downloading +# autopartitioning template. Write the resulting fstab to $2. Abort unattended +# installation if autopartitioning fails. disklabel_autolayout() { local _disk=$1 _f=$2 _dl=/tmp/i/disklabel.auto _op _qst |