mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
makebuildserver: add workaround to Ubuntu/trusty's old paramiko
Ubuntu trusty 14.04's paramiko does not work with jessie's openssh's default settings, so they need to be tweaked in order to provide working ssh to the instance. https://stackoverflow.com/questions/7286929/paramiko-incompatible-ssh-peer-no-acceptable-kex-algorithm/32691055#32691055
This commit is contained in:
parent
1f59d6f0cf
commit
7f451a815b
2 changed files with 11 additions and 1 deletions
|
|
@ -392,6 +392,7 @@ vagrantfile += """
|
|||
:sdk_loc => "/home/vagrant/android-sdk",
|
||||
:ndk_loc => "/home/vagrant/android-ndk",
|
||||
:debian_mirror => "%s",
|
||||
:ubuntu_trusty => "%s",
|
||||
:user => "vagrant"
|
||||
}
|
||||
}
|
||||
|
|
@ -402,7 +403,8 @@ vagrantfile += """
|
|||
chef.add_recipe "kivy"
|
||||
end
|
||||
end
|
||||
""" % (config['debian_mirror'])
|
||||
""" % (config['debian_mirror'],
|
||||
str('14.04' in os.uname()[3]).lower())
|
||||
|
||||
# Check against the existing Vagrantfile, and if they differ, we need to
|
||||
# create a new box:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue