* [PATCH 3/3] change AllowAgentForwarding in SSHD configuration if, necessary
@ 2019-04-08 16:35 Peter Müller
0 siblings, 0 replies; only message in thread
From: Peter Müller @ 2019-04-08 16:35 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 924 bytes --]
Fixes #11931
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
Cc: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/misc-progs/sshctrl.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/misc-progs/sshctrl.c b/src/misc-progs/sshctrl.c
index 30074973d..476dbc9d5 100644
--- a/src/misc-progs/sshctrl.c
+++ b/src/misc-progs/sshctrl.c
@@ -76,6 +76,11 @@ int main(int argc, char *argv[])
else
strlcat(command, "s/^Port .*$/Port 222/", STRING_SIZE - 1 );
+ if(findkey(kv, "SSH_AGENT_FORWARDING", buffer) && !strcmp(buffer,"on"))
+ strlcat(command, "s/^AllowAgentForwarding .*$/AllowAgentForwarding yes/;", STRING_SIZE - 1 );
+ else
+ strlcat(command, "s/^AllowAgentForwarding .*$/AllowAgentForwarding no/;", STRING_SIZE - 1 );
+
freekeyvalues(kv);
snprintf(buffer, STRING_SIZE - 1, "' /etc/ssh/sshd_config >&%d", config_fd );
--
2.16.4
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-04-08 16:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-08 16:35 [PATCH 3/3] change AllowAgentForwarding in SSHD configuration if, necessary Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox