From b1457b1f4dcd49cc52d01e381e394e3fc648f09a Mon Sep 17 00:00:00 2001 From: nodiscc Date: Sat, 7 Mar 2020 14:09:32 +0100 Subject: [PATCH] skel: add default ssh client config (enable controlmaster/connection sharing) https://wiki.archlinux.org/index.php/OpenSSH#Speeding_up_SSH --- config/includes.chroot/etc/skel/.ssh/config | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 config/includes.chroot/etc/skel/.ssh/config diff --git a/config/includes.chroot/etc/skel/.ssh/config b/config/includes.chroot/etc/skel/.ssh/config new file mode 100644 index 0000000..085acd8 --- /dev/null +++ b/config/includes.chroot/etc/skel/.ssh/config @@ -0,0 +1,5 @@ +Host * + PubkeyAuthentication yes + ControlPath ~/.ssh/master-%r@%h:%p + ControlMaster auto + ControlPersist 60