blob: b34dbcda0d6ae96543c1f7714045a345865df47c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
From b0d3fe663d6a54b1348934946bbf8678b7470d14 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Sun, 9 Feb 2014 16:10:17 +0000
Subject: Support synchronisation with service supervisor using SIGSTOP
Forwarded: no
Last-Update: 2013-09-14
Patch-Name: sigstop.patch
---
sshd.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sshd.c b/sshd.c
index c49a877..23e8c2d 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1924,6 +1924,10 @@ main(int ac, char **av)
}
}
+ if (getenv("SSH_SIGSTOP"))
+ /* Tell service supervisor that we are ready. */
+ kill(getpid(), SIGSTOP);
+
/* Accept a connection and return in a forked child */
server_accept_loop(&sock_in, &sock_out,
&newsock, config_s);
|