From 9cc4ba8e941a400ba46dc6c4b3dd5a7412a2ab92 Mon Sep 17 00:00:00 2001 From: gerr1t Date: Thu, 28 May 2015 15:22:48 +0200 Subject: [PATCH] apache_site automatically appends .conf. From the apache_site.rb from the apache cookbook: "conf_name = "#{params[:name]}.conf" This change is needed because it is failing to activate the munin vhost: I, [2015-05-28T15:17:19.987614 #16970] INFO --: * execute[a2ensite munin.conf.conf] action run[2015-05-28T13:17:19+00:00] INFO: Processing execute[a2ensite munin.conf.conf] action run (munin::server_apache line 25) --- recipes/server_apache.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/server_apache.rb b/recipes/server_apache.rb index 3390c12..3898bac 100644 --- a/recipes/server_apache.rb +++ b/recipes/server_apache.rb @@ -36,4 +36,4 @@ end end -apache_site 'munin.conf' +apache_site 'munin'