I’m following the example in Services - Flox Docs for how to set up a service, but the variables don’t seem to be passed through.
This doesn’t work:
[services.tomcat]
command = "catalina.sh jpda start"
vars.JPDA_ADDRESS = "5005"
vars.JPDA_TRANSPORT = "dt_socket"
is-daemon = true
shutdown.command = "catalina.sh stop"
But this does:
[services.tomcat]
command = "JPDA_ADDRESS=5005 JPDA_TRANSPORT=dt_socket catalina.sh jpda start"
is-daemon = true
shutdown.command = "catalina.sh stop"
Am I missing something obvious?