mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
FUSE filesystem for mounting a directory to another directory with different permissions/ownership
18 lines
420 B
Diff
18 lines
420 B
Diff
# workaroung for musl getmntent: avoid using fusermount in test setup
|
|
--- a/tests/common.rb
|
|
+++ b/tests/common.rb
|
|
@@ -213,11 +213,5 @@ def nonroot_testenv(bindfs_args, options = {}, &block)
|
|
end
|
|
|
|
def umount_cmd
|
|
- if !`which fusermount3`.strip.empty?
|
|
- 'fusermount3 -uz'
|
|
- elsif !`which fusermount`.strip.empty?
|
|
- 'fusermount -uz'
|
|
- else
|
|
- 'umount'
|
|
- end
|
|
+ 'umount'
|
|
end
|
|
|
|
def assert
|