Browse Source

Merge pull request #104 from genuss/mod_dav_svn

Add mod_dav_svn support
tags/v0.37.4
Forrest 9 years ago
parent
commit
9ade6b3de8
2 changed files with 36 additions and 0 deletions
  1. +6
    -0
      README.rst
  2. +30
    -0
      apache/mod_dav_svn.sls

+ 6
- 0
README.rst View File

@@ -80,6 +80,12 @@ Installs and enables the mod_php5 module

Installs and enables the mod_fcgid module

``apache.mod_dav_svn``
--------------------

Installs and enables the mod_dav_svn module (Debian only)


``apache.mod_vhost_alias``
----------------------


+ 30
- 0
apache/mod_dav_svn.sls View File

@@ -0,0 +1,30 @@
{% if grains['os_family'] == "Debian" %}

include:
- apache

libapache2-mod-svn:
pkg.installed: []


a2enmod dav_svn:
cmd.run:
- unless: ls /etc/apache2/mods-enabled/dav_svn.load
- order: 255
- require:
- pkg: apache
- pkg: libapache2-mod-svn
- watch_in:
- module: apache-restart

a2enmod authz_svn:
cmd.run:
- unless: ls /etc/apache2/mods-enabled/authz_svn.load
- order: 255
- require:
- pkg: apache
- pkg: libapache2-mod-svn
- watch_in:
- module: apache-restart

{% endif %}

Loading…
Cancel
Save