Hi, I'm trying to find a way to configure Greenline to not restart a service once it has failed and the stop method has been called. Giving it a transient contract type prevents Greenline from stopping the service once it has failed. I want stop to happen once the processes have exited, but not restart.
I've thought of some workarounds like configuring a reverse dependency in the start method on a statefile created during the first startup. Or, always exiting the stop method with an error code will put the service into maintenance mode and it won't restart. However I'd certainly prefer to use existing Greenline functionality. And I haven't yet found examples of what I'm trying to do. thanks, Mike