From d1f21d601ecec10f591041e716bbd36552333cc9 Mon Sep 17 00:00:00 2001 From: pappapisshu <39009553+pappapisshu@users.noreply.github.com> Date: Mon, 30 Jan 2023 21:24:57 +0100 Subject: [PATCH] The load_ssh_private_key() function not used anywhere is removed. --- management/utils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/management/utils.py b/management/utils.py index d10499f1..6eb7129c 100644 --- a/management/utils.py +++ b/management/utils.py @@ -51,12 +51,6 @@ def load_ssh_public_key(): with open(ssh_public_key_file, 'r') as f: return f.read() -def load_ssh_private_key(): - ssh_private_key_file = os.path.join('/root', '.ssh', 'id_rsa_miab') - if os.path.exists(ssh_private_key_file): - with open(ssh_private_key_file, 'r') as f: - return f.read() - # UTILITIES def safe_domain_name(name):