From eb2a56d8e2f0b76fb5534e10ff574499b658dce5 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 7 Apr 2016 20:42:20 +0000 Subject: [PATCH] Rename certs --- server/modules/autoimage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/modules/autoimage.py b/server/modules/autoimage.py index cb24ec0..8c29f92 100755 --- a/server/modules/autoimage.py +++ b/server/modules/autoimage.py @@ -81,7 +81,7 @@ def main(): image_flags = [] if FLAGS.https_ca_cert: - https_ca_cert_path = os.path.join('icon', 'config', 'ca.https.cert.pem') + https_ca_cert_path = os.path.join('icon', 'config', 'ca.www.cert.pem') shutil.copyfile( FLAGS.https_ca_cert, os.path.join(FLAGS.chroot_path, https_ca_cert_path)) @@ -90,11 +90,11 @@ def main(): ]) if FLAGS.https_client_cert and FLAGS.https_client_key: - https_client_cert_path = os.path.join('icon', 'config', 'client.https.cert.pem') + https_client_cert_path = os.path.join('icon', 'config', 'client.www.cert.pem') shutil.copyfile( FLAGS.https_client_cert, os.path.join(FLAGS.chroot_path, https_client_cert_path)) - https_client_key_path = os.path.join('icon', 'config', 'client.https.key.pem') + https_client_key_path = os.path.join('icon', 'config', 'client.www.key.pem') shutil.copyfile( FLAGS.https_client_key, os.path.join(FLAGS.chroot_path, https_client_key_path))