source:
trunk/puppet/modules/puppet-svn/manifests/init.pp
@
765
Last change on this file since 765 was 625, checked in by , 15 years ago | |
---|---|
File size: 377 bytes |
Line | |
---|---|
1 | # |
2 | # Example usage: |
3 | # The following creates the repository at /var/lib/svn/puppet |
4 | # |
5 | # svnrepo { puppet: path => "/var/lib/svn" } |
6 | # |
7 | # The following checks out the repository at /var/lib/puppet |
8 | # |
9 | # svnserve { puppet: source => "file:///var/lib/svn", path => "/var/lib/puppet" } |
10 | |
11 | class svn { |
12 | package { "subversion": ensure => installed } |
13 | } |
14 | |
15 | import 'checkout.pp' |
16 | import 'repo.pp' |
Note: See TracBrowser
for help on using the repository browser.