forked from chef-boneyard/subversion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
28 lines (24 loc) · 1.01 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name 'subversion'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache 2.0'
description 'Installs subversion'
version '1.3.1'
supports 'centos'
supports 'debian'
supports 'fedora'
supports 'redhat'
supports 'suse'
supports 'ubuntu'
supports 'windows'
depends 'apache2', '>= 2.0.0'
depends 'windows', '~> 1.10'
recipe 'subversion', 'Includes the client recipe.'
recipe 'subversion::client', 'Subversion Client installs subversion and some extra svn libs'
recipe 'subversion::server', 'Subversion Server (Apache2 mod_dav_svn)'
attribute 'subversion/list_parent_path',
:display_name => 'Subversion List Parent Path?',
:description => %q(a choice of "on" or "off". When set to "on" the list of repositories in the `node['subversion']['repo_dir']` will be indexed at http://<server_name>/svn. Default is "off"),
:required => 'optional',
:default => 'off',
:recipes => ['subversion::server']