diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-03 17:11:15 +0200 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2021-09-14 11:28:41 -0500 |
commit | 93d600c0a49ab21ab551b62aba985d32ed4fcf1f (patch) | |
tree | 0cefbb30cdf14ac740f7a6159558f5c496cd49af /init.d | |
parent | 6e24d335172b43286a284167c2d54d8f240fc9a0 (diff) |
force root to be rw before localmount
The original service that pulled in root remount was mtab which
is not part of OpenRC.
This fixes #449.
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/localmount.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init.d/localmount.in b/init.d/localmount.in index 31684191..c571504a 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -13,9 +13,9 @@ description="Mounts disks and swap according to /etc/fstab." depend() { - need fsck - use lvm modules root - after clock lvm modules root + need fsck root + use lvm modules + after clock lvm modules keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver } |