]> gitweb.fluxo.info Git - puppet-websvn.git/commitdiff
Adding websvn config and svn folder master
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 14 Mar 2010 22:40:08 +0000 (22:40 +0000)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 14 Mar 2010 22:40:08 +0000 (22:40 +0000)
files/svn_deb_conf.inc [new file with mode: 0644]
manifests/init.pp

diff --git a/files/svn_deb_conf.inc b/files/svn_deb_conf.inc
new file mode 100644 (file)
index 0000000..edba0b7
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+// managed by puppet
+$config->parentPath("/var/svn");
+$config->setEnscriptPath("/usr/bin");
+$config->setSedPath("/bin");
+$config->useEnscript();
+?>
index 20506e8330772ba0e023651c3e9a51bf7f264439..0483bb8d2ea3d0e62149732c63741faf16f89cad 100644 (file)
@@ -13,6 +13,14 @@ class websvn {
     ensure => installed,
   }
 
+  # Subversion folder
+  file { "/var/svn":
+    ensure => directory,
+    owner  => root,
+    group  => root,
+    mode   => 0755,
+  }
+
   # The needed apache modules
   apache::module { "dav":
     ensure  => present,