diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/conf.d/rc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/conf.d/rc b/etc/conf.d/rc index e04c0b0..a672722 100644 --- a/etc/conf.d/rc +++ b/etc/conf.d/rc @@ -68,9 +68,12 @@ RC_FAIL_ON_ZOMBIE="no" # Set to "yes" if stop_daemon() should attempt to kill -# any children left in the system. This does not affect sshd. +# any children left in the system. +# Be careful with this as it really does what it was on the tin. +# fex, if you're in an ssh process and you restart a service on which ssh +# depends then your terminal will be killed also. -RC_KILL_CHILDREN="yes" +RC_KILL_CHILDREN="no" # Set the amount of seconds start_daemon() waits after starting |