From ccd040c89251081373d30e5c532101567c3fbba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Tue, 14 Mar 2017 09:04:18 +0100 Subject: [PATCH] Fixed line returns in SSH auth keys. --- 1.Base/2.ubicast_shell_access/0_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1.Base/2.ubicast_shell_access/0_setup.py b/1.Base/2.ubicast_shell_access/0_setup.py index 7bf32f55..09bf4bfa 100644 --- a/1.Base/2.ubicast_shell_access/0_setup.py +++ b/1.Base/2.ubicast_shell_access/0_setup.py @@ -13,13 +13,13 @@ def add_allowed_keys(path, keys): content = fo.read() elif not os.path.exists(os.path.dirname(path)): os.makedirs(os.path.dirname(path)) - new_content = content.strip() + new_content = content.strip() + '\n' for key in keys: key = key.strip() if not key: continue if key not in new_content: - new_content += '\n' + key + new_content += key + '\n' utils.log('The key "%s" will be added in "%s".' % (key.split(' ')[-1], path)) else: utils.log('The key "%s" is already in "%s".' % (key.split(' ')[-1], path)) -- GitLab