2120: fix issue with umount arg list too long on uninstall

Signed-off-by: Patrick Force <patrickforce@gmail.com>
This commit is contained in:
Patrick Force 2020-09-01 16:56:42 -06:00
parent 447097a597
commit 8b47ccc4d1
2 changed files with 2 additions and 2 deletions

View File

@ -554,7 +554,7 @@ do_unmount() {
MOUNTS=$(printf $MOUNTS | grep "^$1" | sort -r)
if [ -n "${MOUNTS}" ]; then
set -x
umount ${MOUNTS}
xargs -n 1 umount <<< ${MOUNTS}
else
set -x
fi

View File

@ -554,7 +554,7 @@ do_unmount() {
MOUNTS=$(printf $MOUNTS | grep "^$1" | sort -r)
if [ -n "${MOUNTS}" ]; then
set -x
umount ${MOUNTS}
xargs -n 1 umount <<< ${MOUNTS}
else
set -x
fi