diff options
author | apb <apb> | 2013-11-10 06:36:28 +0000 |
---|---|---|
committer | apb <apb> | 2013-11-10 06:36:28 +0000 |
commit | 190a59a832cf65bccf363cfb62aa48a99b85a7c9 (patch) | |
tree | 0edac7831f06294b63fc23ba344f6e2b30a2f6fa /filesystems | |
parent | 8210535c256d1d059ee9a51f5fe309110439bcdc (diff) | |
download | pkgsrc-190a59a832cf65bccf363cfb62aa48a99b85a7c9.tar.gz |
Add more details to DESCR, adapted from README in the unpacked source tree.
Diffstat (limited to 'filesystems')
-rw-r--r-- | filesystems/fuse-bindfs/DESCR | 14 | ||||
-rw-r--r-- | filesystems/fuse-bindfs/Makefile | 3 |
2 files changed, 14 insertions, 3 deletions
diff --git a/filesystems/fuse-bindfs/DESCR b/filesystems/fuse-bindfs/DESCR index b5b8c4d73bd..e1a309abac8 100644 --- a/filesystems/fuse-bindfs/DESCR +++ b/filesystems/fuse-bindfs/DESCR @@ -1,3 +1,13 @@ bindfs is a FUSE filesystem for mounting a directory to another location, -similar to 'mount --bind' in Linux or nullfs in BSD. The permissions in -the mountpoint can be altered through various rules. +similar to 'mount --bind' in Linux or nullfs in BSD. The permissions of +the mirrored directory can be altered in various ways. + +Some things bindfs can be used for: + - Making a directory read-only. + - Making all executables non-executable. + - Sharing a directory with a list of users (or groups). + - Modifying permission bits using rules with chmod-like syntax. + - Changing the permissions with which files are created. + +Non-root users can use almost all features, but most interesting +use-cases need user_allow_other to be defined in /etc/fuse.conf diff --git a/filesystems/fuse-bindfs/Makefile b/filesystems/fuse-bindfs/Makefile index 9622146c6fe..18ce7edaab4 100644 --- a/filesystems/fuse-bindfs/Makefile +++ b/filesystems/fuse-bindfs/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2012/10/03 16:08:30 asau Exp $ +# $NetBSD: Makefile,v 1.3 2013/11/10 06:36:28 apb Exp $ # DISTNAME= bindfs-1.8.4 PKGNAME= fuse-${DISTNAME} +PKGREVISION= 1 CATEGORIES= filesystems MASTER_SITES= http://bindfs.googlecode.com/files/ |