Problem
When working with CI systems, sometimes you want to connect to a server through SSH and execute some commands. Often, you do it like this
ssh user@host <<'EOL'
# your commands here
EOL
which will send the commands until the EOL is reached.
Those commands