diff options
author | Lars Wirzenius <lwirzenius@wikimedia.org> | 2019-07-22 21:11:14 +0300 |
---|---|---|
committer | Lars Wirzenius <lwirzenius@wikimedia.org> | 2019-07-22 21:11:14 +0300 |
commit | 309f5b1abea577dd27e2895fe608b1547215ad27 (patch) | |
tree | 25597b65d581e6422823c99587bf918f53a04ae3 | |
parent | ce84b2ddae06871d9267be28045ac55bbb54ab03 (diff) | |
download | wmf-ci-arch-309f5b1abea577dd27e2895fe608b1547215ad27.tar.gz |
Change: scp command for publishing
-rwxr-xr-x | api.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -369,8 +369,7 @@ class Deployer(API): def _publish_via_ssh(self, filename, ssh_target): logging.info('Copying %s to %s', filename, ssh_target) argv = [ - 'scp', '-oUserKnownHostsFile=/dev/null', '-oStrictHostKeyChecking=no', - filename, ssh_target, + 'scp', '-v', filename, ssh_target, ] return runcmd('.', argv, self.MAX_UPLOAD_TIME) |