Skip to content

Commit

Permalink
fix(middlewared/filesystem): return correct ACL for MacOS
Browse files Browse the repository at this point in the history
Ticket:	#75388
  • Loading branch information
william-gr committed Apr 1, 2019
1 parent 9f7aa68 commit 1c0c05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewared/middlewared/plugins/filesystem.py
Expand Up @@ -103,7 +103,7 @@ def stat(self, path):

if os.path.exists(os.path.join(path, ".windows")):
stat["acl"] = "windows"
elif os.path.exists(os.path.join(path, ".mac")):
elif os.path.exists(os.path.join(path, ".apple")):
stat["acl"] = "mac"
else:
stat["acl"] = "unix"
Expand Down

0 comments on commit 1c0c05e

Please sign in to comment.