From b54d423f87100918225c19b71b2f89be80a617a8 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 16 May 2023 18:26:21 +0200 Subject: [PATCH] mm/make-rslave,rbind um/recursive --- bash/mount.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/mount.sh b/bash/mount.sh index 65131f1..e92ecef 100644 --- a/bash/mount.sh +++ b/bash/mount.sh @@ -57,11 +57,11 @@ done function mm { -mount --bind '/deb' 'overlay/mount/deb' +mount --make-rslave --rbind '/deb' 'overlay/mount/deb' } function um { -umount 'overlay/mount/deb' +umount --recursive 'overlay/mount/deb' }