commit | 25bcbc36dbd5bc6d1b79fcfc04e0e360a96314f2 | [log] [tgz] |
---|---|---|
author | Dennis Dmitriev <ddmitriev@mirantis.com> | Wed Sep 13 23:14:37 2017 +0300 |
committer | Dennis Dmitriev <dis.xcom@gmail.com> | Wed Sep 13 16:15:52 2017 -0400 |
tree | 140ac29c5f67004a29ee27fe996b3a3c1edb2234 | |
parent | 9d9ba9fc8605f3dbffac87719d996c1c123c13a2 [diff] [blame] |
Allow access to private key for other users on CI Change-Id: I2dbb6b188c6a1b6d98a77224f8752abb4849a531 Reviewed-on: https://review.gerrithub.io/378378 Reviewed-by: Dennis Dmitriev <dis.xcom@gmail.com> Tested-by: Dennis Dmitriev <dis.xcom@gmail.com>
diff --git a/tcp_tests/helpers/utils.py b/tcp_tests/helpers/utils.py index 6717c2a..bf4eab4 100644 --- a/tcp_tests/helpers/utils.py +++ b/tcp_tests/helpers/utils.py
@@ -169,6 +169,7 @@ def dump_keyfile(file_path, key): key = paramiko.RSAKey(file_obj=StringIO.StringIO(key['private'])) key.write_private_key_file(file_path) + os.chmod(file_path, 0644) def clean_dir(dirpath):