summaryrefslogtreecommitdiff
path: root/scripts/release-test-os
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/release-test-os')
-rwxr-xr-xscripts/release-test-os7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/release-test-os b/scripts/release-test-os
index 16435371..221a597f 100755
--- a/scripts/release-test-os
+++ b/scripts/release-test-os
@@ -299,7 +299,12 @@ class Deployment(object):
authkeys = os.path.join(tempdir, 'root', '.ssh', 'authorized_keys')
os.makedirs(os.path.dirname(authkeys))
with open(authkeys, 'w') as auth_f:
- with open('/root/.ssh/id_rsa.pub', 'r') as key_f:
+ filename = '/root/.ssh/id_rsa';
+ if not os.path.exists(filename):
+ print("Warning: No key found; generating key");
+ cliapp.runcmd(['ssh-keygen', '-t', 'rsa', '-b', '2048',
+ '-f', filename, '-C', 'test@ciat', '-N', ''])
+ with open(filename + '.pub', 'r') as key_f:
shutil.copyfileobj(key_f, auth_f)
install_files = shlex.split(config.get('INSTALL_FILES', ''))