diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2024-07-09 14:47:22 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2024-07-09 14:47:22 +0000 |
commit | 3f4801fd4456716e7585d3fab82e1e14ed5c7ebf (patch) | |
tree | bcd8aff7db9f5ec6886d6166f74100a99f214872 /distrib | |
parent | 8e9f895b6637b8c0e39ca5ad089761df82bc36be (diff) |
Removing 'softdep' options from fstab entries during upgrade is no longer
necessary as 'softdep' is now a no-op.
ok beck@ sthen@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index d73b8037210..e0c235a7c0a 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1265 2024/06/15 15:05:15 florian Exp $ +# $OpenBSD: install.sub,v 1.1266 2024/07/09 14:47:21 krw Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -2675,10 +2675,9 @@ start_cgiinfo() { # # In addition, # -# 1) delete 'softdep' options (no soft updates in ramdisk kernels), -# 2) mount non-ffs filesystems read only, -# 3) prepend '/mnt' to all mount points, -# 4) delete any trailing '/' from the mount point (e.g. root), +# 1) mount non-ffs filesystems read only, +# 2) prepend '/mnt' to all mount points, +# 3) delete any trailing '/' from the mount point (e.g. root), # # If no /etc/fstab is created, do not proceed with install/upgrade. munge_fstab() { @@ -2692,10 +2691,6 @@ munge_fstab() { $_opt == *noauto* || $_opt == *xx* ]] && continue - # Remove any softdep options, as soft updates are not - # available in the ramdisk kernels. - _opt=$(echo $_opt | sed 's/softdep//') - # Change read-only ffs to read-write since we'll potentially # write to these filesystems. # Mount non-ffs filesystems read only. |