From e70b26e066f58cb29a1d9c36c027858cf71a253a Mon Sep 17 00:00:00 2001 From: clime Date: Mon, 24 Jul 2017 14:40:13 +0200 Subject: [PATCH] [beaker-tests] delete default httpd ssl configuration as it conflicts with example lookaide-upload.conf --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 0d3c896..63cdc13 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -52,6 +52,10 @@ Vagrant.configure(2) do |config| inline: "systemctl enable dist-git.socket && systemctl restart dist-git.socket", run: "always" + distgit.vm.provision "shell", + inline: "rm -f /etc/httpd/conf.d/ssl.conf", # remove default ssl config for it conflicts with lookaside-upload.conf + run: "always" + distgit.vm.provision "shell", inline: "systemctl enable httpd && systemctl restart httpd", run: "always"