portage-stable: Add Killmode=process into openssh service

By default, sshd's KillMode is control-group. Whenever, we reboot
the sshd, it will restart main daemon and forked processes, which
results to the drop of current sessions. This is not desired behavior
from customers, and also results to confusion and problem in the bug.

Other Enterprise distribution perfers to limit the killmode at process
level, which makes sens in a lot of scenarios.

BUG=b/176502144, b/176940335
TEST=presbumit, and manually test(systemctl restart sshd)
RELEASE_NOTE=None

Change-Id: Id460b735d016edbfbd26dd23a651d91df863c9ca
Reviewed-on: https://cos-review.googlesource.com/c/third_party/overlays/portage-stable/+/15970
Tested-by: Cusky Presubmit Bot <presubmit@cos-infra-prod.iam.gserviceaccount.com>
Reviewed-by: Robert Kolchmeyer <rkolchmeyer@google.com>
diff --git a/net-misc/openssh/files/sshd.service b/net-misc/openssh/files/sshd.service
index b5e96b3..6b4da91 100644
--- a/net-misc/openssh/files/sshd.service
+++ b/net-misc/openssh/files/sshd.service
@@ -6,6 +6,7 @@
 ExecStartPre=/usr/bin/ssh-keygen -A
 ExecStart=/usr/sbin/sshd -D -e
 ExecReload=/bin/kill -HUP $MAINPID
+KillMode=process
 
 [Install]
 WantedBy=multi-user.target