-
-
Notifications
You must be signed in to change notification settings - Fork 296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homebrew Bundle always starts services #1274
Comments
Can you try omitting |
Thank you for the suggestion. Indeed, when I omit tap "homebrew/bundle"
tap "homebrew/services"
brew "black"
brew "postgresql@16" I then run
I'm happy to help resolve the issue if you can point me in the general direction. I'm not much of a Rubyist but can probably figure it out. |
Thank you for your prompt assistance with this issue. I can confirm Homebrew Bundle is now working as expected. |
@br3ndonland Thanks for reporting back, happy to help! |
Description
My global Brewfile includes some formulae with services. Initially I had the services set up to restart when changed, like this:
I rarely use the services, so I don't need them running continuously. I updated the Brewfile to include
restart_service: false, start_service: false
like this:When I run
brew services stop --all
, I can see that the services stop, but then they get restarted on the nextbrew bundle install --global
.When I uninstall the formulae with
brew uninstall
, then runbrew bundle install --global
, the services are installed and started again.I tried deleting
.Brewfile.lock.json
but this had no effect.Example terminal session (expand)
Output from recommended Homebrew troubleshooting steps (expand)
Suggestions
Expected behavior:
brew bundle install
would not start services ifrestart_service: false, start_service: false
brew bundle check
would takerestart_service: false, start_service: false
into accountRelated
The text was updated successfully, but these errors were encountered: