ssh_config: controlpersist auto instead of on

just in case that would be used for tracking and hoping that SSH is
clever enough.
This commit is contained in:
Aminda Suomalainen 2018-10-07 21:12:08 +03:00
parent b8bda9cf49
commit 330e8a80ad
No known key found for this signature in database
GPG Key ID: 0C207F07B2F32B67
2 changed files with 6 additions and 6 deletions

View File

@ -6,9 +6,9 @@ Host *
ControlPath ~/.ssh/sockets/socket-%r@%h:%p
# Multiple sessions over single connection
ControlMaster yes
# Keep connection open in the background even after connection has been
# closed.
ControlPersist yes
# Automatically decide whether to keep connection open in the
# background even after connection has been closed.
ControlPersist auto
ForwardAgent no
ForwardX11 no

View File

@ -7,9 +7,9 @@ Host *
ControlPath ~/.ssh/sockets/socket-%r@%h:%p
# Multiple sessions over single connection
ControlMaster yes
# Keep connection open in the background even after connection has been
# closed.
ControlPersist yes
# Automatically decide whether to keep connection open in the
# background even after connection has been closed.
ControlPersist auto
ForwardAgent no
ForwardX11 no