Somehow the #rsync transfer is causing problems, when I use the preconfigured host from ssh config it will do this:

receiving incremental file list
delta-transmission enabled
~V escape not available to multiplexed sessions
unexpected tag 113 [receiver/inc]
rsync error: error in rsync protocol data stream (code 12) at io.c(1648) [receiver=3.2.3]
rsync: [generator] write error: Broken pipe (32)
rsync error: error in socket IO (code 10) at io.c(823) [generator=3.2.3]

#SSH config contains this:

        ServerAliveInterval 4
        ServerAliveCountMax 4
        ControlMaster auto
        ControlPath /tmp/ssh-%r@%h:%p
        ControlPersist 1
        ForwardAgent yes
        CanonicalizeHostname yes

host entry in ssh config is this:

Host name
        Hostname example.org
        User username
        Compression no
        RequestTTY force
        DynamicForward 7074

Is the problem the "RequestTTY force" or something else?

#debian #linux

2