Jordan Brown wrote: > What would you expect to happen if you were to svccfg delete -f a > service while its start method was running?
"Not Defined" > What would you expect to happen, formally, if you were to svcadm disable > a service while its start method was running? (I know what I've > actually seen - it runs the (null) stop method after the start method > exits - but that could just be a race.) If the start method succeeds, I would formally expect the stop method to be run. Even though you've disabled the service, the completion of the start method means the service is put in the online state. Movement out of that state is always accompanied by executing the stop method. Dave