diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-17 17:20:07 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-17 17:20:07 +0000 |
commit | b1edba08e2b00172462862288e86de2f1f5e23e1 (patch) | |
tree | 39682e40a78c2d5afd45c9dc40d3f91ac3243c48 /modules/subversion/manifests/init.pp | |
parent | 74f4ee61581c7c1402b6153fb500e2327cab3435 (diff) | |
download | puppet-b1edba08e2b00172462862288e86de2f1f5e23e1.tar puppet-b1edba08e2b00172462862288e86de2f1f5e23e1.tar.gz puppet-b1edba08e2b00172462862288e86de2f1f5e23e1.tar.bz2 puppet-b1edba08e2b00172462862288e86de2f1f5e23e1.tar.xz puppet-b1edba08e2b00172462862288e86de2f1f5e23e1.zip |
split client and mirror out of the main subversion module file
Diffstat (limited to 'modules/subversion/manifests/init.pp')
-rw-r--r-- | modules/subversion/manifests/init.pp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/subversion/manifests/init.pp b/modules/subversion/manifests/init.pp index b70fdb2e..9ddfeb80 100644 --- a/modules/subversion/manifests/init.pp +++ b/modules/subversion/manifests/init.pp @@ -239,19 +239,6 @@ class subversion { } - class client { - # svn spam log with - # Oct 26 13:30:01 valstar svn: No worthy mechs found - # without it, source http://mail-index.netbsd.org/pkgsrc-users/2008/11/23/msg008706.html - # - $sasl2_package = $architecture ? { - x86_64 => "lib64sasl2-plug-anonymous", - default => "libsasl2-plug-anonymous" - } - - package {['subversion', "$sasl2_package"]: } - } - define snapshot($source, $refresh = '*/5', $user = 'root') { include subversion::client @@ -272,13 +259,6 @@ class subversion { } } - class mirror { - include subversion::tools - local_script { "create_svn_mirror.sh": - content => template('subversion/create_svn_mirror.sh') - } - } - define mirror_repository($source, $refresh = '*/5') { include subversion::mirror |