How to handle formula options #4
Answered
by
fullstackjam
UnderpantsGnome
asked this question in
Q&A
-
|
Given a line in a brew "mysql@8.4", restart_service: :changedHow do I pass that with |
Beta Was this translation helpful? Give feedback.
Answered by
fullstackjam
Mar 16, 2026
Replies: 1 comment
-
|
{
"packages": ["mysql@8.4"]
}For {
"post_install": ["brew services start mysql@8.4"]
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
UnderpantsGnome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mysql@8.4works as-is — just put it in your packages list. The@version syntax is a regular Homebrew formula name, and openboot passes it straight tobrew install.{ "packages": ["mysql@8.4"] }For
restart_service, that's a Brewfile DSL thing (brew bundle), not abrew installflag. You can usepost_installinstead:{ "post_install": ["brew services start mysql@8.4"] }