From ed398c76dee2d2c0f5f4b870bf8379dfdbb583cd Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 22 Jun 2017 14:43:23 +0200 Subject: bin/db-update: "sudo umount" instead of "fusermount -u" --- bin/db-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/db-update b/bin/db-update index bacb0e8..503a0ae 100755 --- a/bin/db-update +++ b/bin/db-update @@ -340,13 +340,13 @@ fi tmp_dir="$(mktemp -d)" clean_up_lock_file() { - fusermount -u "${master_mirror_sshfs}" + sudo /usr/bin/umount "${master_mirror_sshfs}" rm -f "${package_database_lock_file}" "${build_list_lock_file}" rm -rf --one-file-system "${tmp_dir}" } if mountpoint "${master_mirror_sshfs}" > /dev/null 2>&1; then - fusermount -u "${master_mirror_sshfs}" + sudo /usr/bin/umount "${master_mirror_sshfs}" fi mount "${master_mirror_sshfs}" -- cgit v1.2.3-54-g00ecf