Skip to content

Commit d14bce0

Browse files
committed
node, syscontainer: umount everything under /var/lib/docker/containers
Do not leave any mount point busy under /var/lib/docker/containers Signed-off-by: Giuseppe Scrivano <[email protected]>
1 parent 20ffe24 commit d14bce0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
#!/bin/sh
22
source /run/$NAME-env
33

4+
UMOUNT_TARGET=/var/lib/docker/containers
5+
6+
findmnt -R -A -nuo TARGET --raw $UMOUNT_TARGET | tr -d '\r' | grep -v "^$UMOUNT_TARGET$" | \
7+
while read i;
8+
do
9+
umount -lR $i
10+
done
11+
412
exec /usr/local/bin/origin-node-run.sh

0 commit comments

Comments
 (0)