0001-fix-timeout-Increase-the-ssh-key-in-memory-timeout-t.patch 851 B

1234567891011121314151617181920212223242526
  1. From 0b02ff87466505b961ca1b482b85e3d442b512dd Mon Sep 17 00:00:00 2001
  2. From: Jeremy MAURO <jeremy.mauro@gmail.com>
  3. Date: Mon, 30 May 2022 18:18:01 +0200
  4. Subject: [PATCH] fix(timeout): Increase the ssh key in memory timeout to a day
  5. Signed-off-by: Jeremy MAURO <jeremy.mauro@gmail.com>
  6. ---
  7. ssh-ident | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/ssh-ident b/ssh-ident
  10. index ff218ba..0ab2d8b 100755
  11. --- a/ssh-ident
  12. +++ b/ssh-ident
  13. @@ -439,7 +439,7 @@ class Config(object):
  14. "SSH_ADD_OPTIONS": {},
  15. # ssh-add default options. By default, don't keep a key longer
  16. # than 2 hours.
  17. - "SSH_ADD_DEFAULT_OPTIONS": "-t 7200",
  18. + "SSH_ADD_DEFAULT_OPTIONS": "-t 86400",
  19. # Like BatchMode in ssh, see man 5 ssh_config.
  20. # In BatchMode ssh-ident will not print any output and not ask for
  21. --
  22. 2.35.1