filed
Job queue using FUSE
git clone git://mccd.space/filed
| Log | Files | Refs | README | LICENSE |
commit 49679f3053d21233f5cb4a5e508c1761b7e9e080 parent eed58882c8984c2c7a90cbf23f0690dda94f1646 Author: Marc Coquand <marc@coquand.email> Date: Tue, 16 Dec 2025 17:49:47 +0100 Fix file perms Diffstat:
| M | pendingdir.go | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pendingdir.go b/pendingdir.go
@@ -103,7 +103,7 @@ func (f File) Attr(ctx context.Context, a *fuse.Attr) error {
// Append 20 to avoid collission with static files
a.Inode = uint64(f.job.INode + 20)
slog.Debug("FUSE", "inode", a.Inode)
- a.Mode = 0o775
+ a.Mode = 0o750
a.Gid = uint32(os.Getgid())
a.Uid = uint32(os.Getuid())
a.Mtime = f.job.UpdatedAt