diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-15 17:00:27 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-15 17:00:27 +0000 |
commit | a0afb576788f9530d47883e2bc5c4099c8912c2c (patch) | |
tree | a2c04bb46a1ab18b7e7f51aa9adf30d6529fc2b8 /modules | |
parent | dcb3248770865aa4d3db4bded50681e2731c354d (diff) | |
download | puppet-a0afb576788f9530d47883e2bc5c4099c8912c2c.tar puppet-a0afb576788f9530d47883e2bc5c4099c8912c2c.tar.gz puppet-a0afb576788f9530d47883e2bc5c4099c8912c2c.tar.bz2 puppet-a0afb576788f9530d47883e2bc5c4099c8912c2c.tar.xz puppet-a0afb576788f9530d47883e2bc5c4099c8912c2c.zip |
fix stupid typo
Diffstat (limited to 'modules')
-rw-r--r-- | modules/subversion/manifests/hook.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/subversion/manifests/hook.pp b/modules/subversion/manifests/hook.pp index 8c94f5ad..fff04cd2 100644 --- a/modules/subversion/manifests/hook.pp +++ b/modules/subversion/manifests/hook.pp @@ -15,7 +15,7 @@ class subversion { define commit_hook($content, $type) { $array = split($name,'\|') - $repos = $array[0] + $repo = $array[0] $script = $array[1] file { "$repo/hook/$type.d/$script": content => $content, |