Currently, the only way to get the launchctl launch agent to auto-start instances as login is to build from source and use make install && make agent.
brew supports installing plist service files in formulae (refer to brew service). It requires the plist file to be available within the project so that it can be installed:
Currently, the only way to get the
launchctl
launch agent to auto-start instances as login is to build from source and usemake install && make agent
.brew
supports installingplist
service files in formulae (refer tobrew service
). It requires theplist
file to be available within the project so that it can be installed:This PR:
make install
to build theplist
file oncealpine
is installed into$PATH
make agent
Once this is merged, I'll open a PR on the
macpine
formula to install the plist file intoCellar
per above, so thatbrew service
will notice it.