From a2f48eb838a5c3c565c8ca81047fefd33435e458 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 15 Oct 2020 17:49:17 +0200 Subject: [PATCH] contrib: cleanup-tmp-mounts: also clean ext4-ramdisk --- contrib/cleanup-tmp-mounts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/cleanup-tmp-mounts.sh b/contrib/cleanup-tmp-mounts.sh index 2429569..481d2b7 100755 --- a/contrib/cleanup-tmp-mounts.sh +++ b/contrib/cleanup-tmp-mounts.sh @@ -7,7 +7,7 @@ set -eu -MOUNTS=$(mount | grep ' type fuse\.' | grep 'on /var/tmp/\|on /tmp/' | cut -d' ' -f 3) +MOUNTS=$(mount | grep ' type fuse\.' | grep 'on /var/tmp/\|on /tmp/\|on /mnt/ext4-ramdisk/' | cut -d' ' -f 3) for i in $MOUNTS ; do echo "Unmounting $i"