carbon-s6-rc

Source directory for s6-rc database on Carbon
git clone https://ccx.te2000.cz/git/carbon-s6-rc
Log | Files | Refs

commit da1aff490d37e90c6e1293367b8756ca27f5425f
parent a68c7bbe2df7184478e65ea1d27e40dc45612157
Author: ccx <root@dorje.wpr.cz>
Date:   Thu,  4 Mar 2021 19:36:35 +0100

Let umounting tmpfs fail as localmount will do that.

Diffstat:
Mlocalmount/down | 4++--
Mmount-dev-shm/down | 2+-
Mmount-tmp-X11/down | 2+-
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/localmount/down b/localmount/down @@ -1,4 +1,4 @@ # umount all filesystems except specials, if possible -foreground { umount --all --verbose --detach-loop -t nodevtmpfs,noproc,nosysfs,nodevpts } +foreground { umount --all --verbose --detach-loop -t nodevtmpfs,noproc,nosysfs,nodevpts,nomqueue } # remount the rest read-only, except for tmpfs -foreground { umount --all --read-only --verbose -t nodevtmpfs,noproc,nosysfs,nodevpts,notmpfs } +foreground { umount --all --read-only --verbose -t nodevtmpfs,noproc,nosysfs,nodevpts,nomqueue,notmpfs } diff --git a/mount-dev-shm/down b/mount-dev-shm/down @@ -1 +1 @@ -s6-umount /dev/shm +foreground { s6-umount /dev/shm } diff --git a/mount-tmp-X11/down b/mount-tmp-X11/down @@ -1 +1 @@ -umount /tmp/.X11-unix +foreground { umount /tmp/.X11-unix }