Homebrew brew doctor
is printing many permissions errors, on a system that has multiple users.
Some of the users are fully trusted, and need to be able to run typical brew commands such as brew install
and brew update
.
Some stackoverflow posts are recommending things like:
- changing the user via
chown
- changing the group via
chgrp
- changing permissions via
chmod
Some posts suggest these:
- set the user to the current "$USER", or create a user "brew"
- set the group to the built-in OS X group "admin" or "staff", or create a group "brew"
- set permissions recursively to group-read and group-write
- create a custom brew directory, such as "/opt/brew"
Is there a script that "does the right thing", such as by creating any custom user or group as needed, setting the user, setting the group, setting the permissions for directories and files?
Or is there any better way to accomplish the core goal, i.e. how to use brew on a system that has multiple users, and enable some of these users to be able to run all the usual brew commands successfully?
My work-in-progress is open source here.