diff options
-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 |