]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/subversion/recipes/default.rb
Add https support to svn.openstreetmap.org
[chef.git] / cookbooks / subversion / recipes / default.rb
index 1a52b9f426adcba3648a0531d254b16b83cbaab7..10de0520de67e65a723a05427656c5327100b67a 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "subversion"
 
@@ -35,16 +35,31 @@ remote_directory "#{repository_directory}/hooks" do
   purge false
 end
 
-apache_module "authz_svn" do
-  package "libapache2-svn"
+apache_module "dav" do
+  package "apache2"
+end
+
+apache_module "dav_fs" do
+  package "apache2"
 end
 
 apache_module "dav_svn" do
   package "libapache2-svn"
 end
 
+apache_module "authz_svn" do
+  package "libapache2-svn"
+end
+
 apache_site site_name do
   template "apache.erb"
   directory repository_directory
   variables :realm => "Subversion Repository", :password_file => "/etc/apache2/svn.passwd"
 end
+
+template "/etc/cron.daily/svn-backup" do
+  source "backup.cron.erb"
+  owner "root"
+  group "root"
+  mode 0755
+end