Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #!/bin/sh | |
| # Configure homebrew permissions to allow multiple users on MAC OSX. | |
| # Any user from the admin group will be able to manage the homebrew and cask installation on the machine. | |
| # Execute under NON-ROOT user! | |
| # allow admins to manage homebrew's local install directory | |
| sudo chown -R $(whoami) $(brew --prefix)/* | |
| sudo chmod -R g+w $(brew --prefix)/* | |
| # Might be an optional! |