diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-12-28 13:55:43 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-12-28 13:55:43 +0000 |
commit | 18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d (patch) | |
tree | e7df0d6f086d8a3111055fbfb98f7e38456c3078 /modules/subversion/manifests | |
parent | 2968a23f47a59932c293e8d30e39b12c48da6160 (diff) | |
download | puppet-18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d.tar puppet-18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d.tar.gz puppet-18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d.tar.bz2 puppet-18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d.tar.xz puppet-18854eb0a9eaa8bafaffe3bcb190de4e2b771e8d.zip |
subversion: remove CIA hooks
cia.vc does not exist anymore
Diffstat (limited to 'modules/subversion/manifests')
-rw-r--r-- | modules/subversion/manifests/repository.pp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/subversion/manifests/repository.pp b/modules/subversion/manifests/repository.pp index 0c656951..7d9d6265 100644 --- a/modules/subversion/manifests/repository.pp +++ b/modules/subversion/manifests/repository.pp @@ -2,9 +2,6 @@ # group : group that have commit access on the svn # public : boolean if the svn is readable by anybody or not # commit_mail : array of people who will receive mail after each commit -# cia_post : send commits to cia.vc -# cia_module : name of the module to send to cia.vc -# cia_ignore_author : a regexp to ignore commits from some authors # no_binary : do not accept files with common binary extensions # on this repository # restricted_to_user : restrict commits to select user @@ -17,9 +14,6 @@ define subversion::repository($group = 'svn', $public = true, $commit_mail = '', $i18n_mail = '', - $cia_post = false, - $cia_module = 'default', - $cia_ignore_author = '', $no_binary = false, $restricted_to_user = false, $syntax_check = '', @@ -87,17 +81,6 @@ define subversion::repository($group = 'svn', } - if $cia_post { - subversion::hook::post_commit { "$name|cia.vc": - content => template('subversion/ciabot_svn.sh'), - } - } else { - file { "$name/hooks/post-commit.d/cia.vc": - ensure => absent, - } - } - - if $no_binary { pre_commit_link { "$name/hooks/pre-commit.d/no_binary": } } else { |