diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-12-13 15:37:47 +0100 |
---|---|---|
committer | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-12-13 15:37:47 +0100 |
commit | e82590a83ec04e93fafca0140cd2a1159caab59c (patch) | |
tree | 0dff9ba481edf9e596c0fc6709c3b1345531c84a /odl-pipeline/lib | |
parent | ffd8e8b0ec3e301980b4a0c3a49adf38d70060d1 (diff) |
small bugfixes for odl_reinstaller
Change-Id: Ie4d7c4811869a765da22444d80ca5f2133fe2c0f
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
Diffstat (limited to 'odl-pipeline/lib')
-rwxr-xr-x | odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py b/odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py index 9eb2a70..25ec21b 100755 --- a/odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py +++ b/odl-pipeline/lib/odl_reinstaller/odl_reinstaller.py @@ -13,7 +13,8 @@ class ODLReInstaller(Service): def run(self, sys_args, config): cloner_info_path = sys_args.cloner_info - SSH_CONFIG['ID_RSA_PATH'] = cloner_info_path + CONFIG.ID_RSA_PATH + SSH_CONFIG['ID_RSA_PATH'] = (cloner_info_path + CONFIG.ID_RSA_PATH + + 'id_rsa') node_config = utils_yaml.read_dict_from_yaml( cloner_info_path + CONFIG.NODE_YAML_PATH) # copy ODL to all nodes where it need to be copied |