Hi, I was going through functions in script /lib/svc/share/smf_include.sh. For function "smf_kill_contract", I have one querry.
If I issue 1. smf_kill_contract <CTID> TERM 1 30 From the code what I understand, the function will send SIGTERM signal to all the process with contract ID <CTID>, and will continue to do so for 30 seconds with sleep of 5 seconds. 2. smf_kill_contract <CTID> KILL 1 The function will send SIGKILL signal to all the process with contract ID <CTID>, and will continue to do so for time till all the process are killed with that contract id. Is my understanding, Just wanted to confirm before I use this function. Thanks Ganesh