From de5d903f0007e83fdd2fc817d79fed4635290da3 Mon Sep 17 00:00:00 2001 From: bretello Date: Sat, 4 Apr 2020 19:58:31 +0200 Subject: [PATCH] installer: add ssh ControlMaster=autoask option --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index b6c8411..a1fc925 100755 --- a/install.sh +++ b/install.sh @@ -97,7 +97,8 @@ function create_ssh_config { echo '#Compression=yes' echo echo '## Uncomment the following to enable ssh ControlMaster and ssh session persistence' - echo '#ControlMaster auto' + echo '#ControlMaster autoask # ask for confirmation before using a shared connection' + echo '#ControlMaster auto # do not ask for confirmation' echo '#ControlPath ~/.ssh/%r@%h:%p' echo '#ControlPersist yes' echo