Skip to content

Commit

Permalink
chmod and chown Linux fuse operations (ignored)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitlogik committed Aug 30, 2020
1 parent 60f099f commit 79b096d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions guardata/client/mountpoint/fuse_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ def getattr(self, path: FsPath, fh: Optional[int] = None):
fuse_stat["st_gid"] = gid
return fuse_stat

def chmod(self, path: FsPath, mode: int):
# TODO : for now silently ignored
return

def chown(self, path: FsPath, uid: int, gid: int):
# TODO : for now silently ignored
return

def readdir(self, path: FsPath, fh: int):
stat = self.fs_access.entry_info(path)

Expand Down

0 comments on commit 79b096d

Please sign in to comment.