]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/providers/site.rb
Fix comments
[chef.git] / cookbooks / apache / providers / site.rb
index e15646456b0c6d61571f74438fcd1ef3d71f44e5..1b13a3d0221e406fcf845cae72b00c1148f73b88 100644 (file)
@@ -1,8 +1,8 @@
 #
-# Cookbook Name:: postgresql
-# Provider:: postgresql_database
+# Cookbook Name:: apache
+# Provider:: apache_site
 #
-# Copyright 2012, OpenStreetMap Foundation
+# Copyright 2013, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -28,10 +28,8 @@ action :create do
     owner "root"
     group "root"
     mode 0644
-    variables new_resource.variables.merge(:name => new_resource.name, :directory => new_resource.directory)
-    if enabled?
-      notifies :reload, "service[apache2]"
-    end
+    variables new_resource.variables.merge(:name => new_resource.name, :directory => site_directory)
+    notifies :reload, "service[apache2]" if enabled?
   end
 
   new_resource.updated_by_last_action(t.updated_by_last_action?)
@@ -65,6 +63,10 @@ action :delete do
   new_resource.updated_by_last_action(f.updated_by_last_action?)
 end
 
+def site_directory
+  new_resource.directory || "/var/www/#{new_resource.name}"
+end
+
 def available_name
   "/etc/apache2/sites-available/#{new_resource.name}"
 end