sapling/eden/scripts/force-unmount-all.sh
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

17 lines
516 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
ALL_EDENFS_MOUNTS=$(grep -e '^edenfs' /proc/mounts | awk '{print $2}')
for n in $ALL_EDENFS_MOUNTS; do
# Sometimes, lazy unmounting causes other mounts to unmount.
sudo umount -v -l "$n"
done
ALL_EDENFS_MOUNTS=$(grep -e '^edenfs' /proc/mounts | awk '{print $2}')
for n in $ALL_EDENFS_MOUNTS; do
sudo umount -v -f "%f"
done