From 4f7d073a9c27742d2e836871c92a61b30a0da4f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bj=C3=B6rklund?= Date: Thu, 14 Nov 2024 12:48:16 +0100 Subject: [PATCH] Fixes with apache config. --- global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp index 03fc49e..691c29a 100644 --- a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp +++ b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp @@ -83,8 +83,8 @@ class soc::intelmq( } exec { 'Enable wsgi-venv conf': - command => 'a2enconf wsgi-venv' - creates => '/etc/apache2/conf-enabled/wsgi-venv.conf' + command => 'a2enconf wsgi-venv', + creates => '/etc/apache2/conf-enabled/wsgi-venv.conf', require => File('/etc/apache2/conf-available/wsgi-venv.conf'), notify => Service['apache2'], }