chiark / gitweb /
buildserver: make provision scripts output name to log
[fdroidserver.git] / buildserver / provision-ubuntu-trusty-paramiko
1 #!/bin/bash
2
3 echo $0
4 set -e
5
6 # Ubuntu trusty 14.04's paramiko does not work with jessie's openssh's default settings
7 # https://stackoverflow.com/questions/7286929/paramiko-incompatible-ssh-peer-no-acceptable-kex-algorithm/32691055#32691055
8
9 if ! grep --quiet ^Ciphers /etc/ssh/sshd_config; then
10     echo Ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes128-ctr >> /etc/ssh/sshd_config
11 fi
12
13 if ! grep --quiet ^MACs /etc/ssh/sshd_config; then
14     echo MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,hmac-sha1 >> /etc/ssh/sshd_config
15 fi
16
17 if ! grep --quiet ^KexAlgorithms /etc/ssh/sshd_config; then
18     echo KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1 >> /etc/ssh/sshd_config
19 fi