From 3a411c092f059a7dee4f4486229be633ddd10a0d Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Wed, 28 Aug 2019 17:46:04 +0200 Subject: [PATCH] Real path --- .../certbot_integration_tests/apache_tests/apache_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-ci/certbot_integration_tests/apache_tests/apache_config.py b/certbot-ci/certbot_integration_tests/apache_tests/apache_config.py index e49d44f93..0e9443a9d 100644 --- a/certbot-ci/certbot_integration_tests/apache_tests/apache_config.py +++ b/certbot-ci/certbot_integration_tests/apache_tests/apache_config.py @@ -9,7 +9,7 @@ import getpass def construct_apache_config_dir(apache_root, http_port, https_port, key_path=None, cert_path=None, wtf_prefix='le'): config_path = os.path.join(apache_root, 'config') - shutil.copytree('/etc/apache2-save', config_path, symlinks=True) + shutil.copytree('/etc/apache2', config_path, symlinks=True) webroot_path = os.path.join(apache_root, 'www') os.mkdir(webroot_path)