diff options
Diffstat (limited to 'modules/subversion/manifests/hook/post_commit.pp')
-rw-r--r-- | modules/subversion/manifests/hook/post_commit.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/subversion/manifests/hook/post_commit.pp b/modules/subversion/manifests/hook/post_commit.pp new file mode 100644 index 00000000..90d939cd --- /dev/null +++ b/modules/subversion/manifests/hook/post_commit.pp @@ -0,0 +1,6 @@ +define subversion::hook::post_commit($content) { + hook { $name: + content => $content, + type => 'post-commit', + } +} |