aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRyan Schlesinger2011-09-21 10:37:36 -0700
committerCharlie Sharpsteen2011-09-21 23:00:42 -0700
commita50e377519f77f47fe723cbb67ecd230bf627766 (patch)
treedbe1f37d5539f101c3b071c06729c3189b3ce06f /Library/Formula
parent4427ae9dd2bf24dd9da8bb123252bc8cc6c91b7b (diff)
downloadhomebrew-a50e377519f77f47fe723cbb67ecd230bf627766.tar.bz2
Fuse4x: Add caveats concerning fuse4x admin group
This is needed by any filesystem that uses the `allow_other` mount option. Closes #7742. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fuse4x.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/fuse4x.rb b/Library/Formula/fuse4x.rb
index 94de9d416..66baa1944 100644
--- a/Library/Formula/fuse4x.rb
+++ b/Library/Formula/fuse4x.rb
@@ -22,4 +22,12 @@ class Fuse4x < Formula
system "./configure", "--disable-dependency-tracking", "--disable-debug", "--disable-static", "--prefix=#{prefix}"
system "make install"
end
+
+ def caveats
+ <<-EOS.undent
+ In order to use the allow_other mount option, you must set the fuse4x admin group.
+ To set it to the default (admin group):
+ sudo sysctl -w vfs.generic.fuse4x.tunables.admin_group=80
+ EOS
+ end
end