Last active
January 12, 2017 03:14
-
-
Save TylerJWhit/f2a11520c819b6e115ff to your computer and use it in GitHub Desktop.
Reset permissions FreeNAS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type d -print0 | xargs -L 1 -0 -I'{}' setfacl -m everyone@:full_set:fd:allow "{}" | |
find . -type f -print0 | xargs -L 1 -0 -I'{}' setfacl -m everyone@:full_set::allow "{}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment