You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I found the tinc-down not called when I stop service, so I investigate the problem, and found that KillMode is default to control-group, this option will send TERM signal to all process in same group, include tinc-down script.
Add "KillMode=process" will fix this problem.
The text was updated successfully, but these errors were encountered:
This ensures only the main process is sent the SIGTERM, and not anything
else that might have started in the same control group, including the
tinc-down script.
Closes#145 on GitHub.
Hello, I found the tinc-down not called when I stop service, so I investigate the problem, and found that KillMode is default to control-group, this option will send TERM signal to all process in same group, include tinc-down script.
Add "KillMode=process" will fix this problem.
The text was updated successfully, but these errors were encountered: