summaryrefslogtreecommitdiff
path: root/scripts/release-test
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-10-15 08:25:44 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-10-27 09:09:20 +0000
commitf199ddc09831e8eb0111069f3495de8c1bd71471 (patch)
tree4e2995252281f579aec8e406744d269f3bfe4b70 /scripts/release-test
parent1e0771efd2313d6a07f0f088e0bf4660154054fd (diff)
downloaddefinitions-f199ddc09831e8eb0111069f3495de8c1bd71471.tar.gz
Stop assuming that known_hosts exists, and fix a typo
Diffstat (limited to 'scripts/release-test')
-rwxr-xr-xscripts/release-test2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/release-test b/scripts/release-test
index b2bca58d..a1611721 100755
--- a/scripts/release-test
+++ b/scripts/release-test
@@ -185,6 +185,8 @@ class Deployment(object):
@staticmethod
def _ssh_host_key_exists(hostname):
"""Check if an ssh host key exists in known_hosts"""
+ if not os.path.exists('/root/.ssh/known_hosts'):
+ return False
with open('/root/.ssh/known_hosts', 'r') as known_hosts:
return any(line.startswith(hostname) for line in known_hosts)