From d7175c9d21db61ce2e8cc89c169f222e679079b4 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 8 Sep 2015 08:23:46 +0000 Subject: If no key exists, create one. --- scripts/release-test-os | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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', '')) -- cgit v1.2.1