diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-22 01:04:18 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-22 01:04:18 +0000 |
commit | d3a585bdc784cf848b641e63c289a832a1e1360c (patch) | |
tree | 8a9d79235ac2306c7784a62ceb6d56c4c9f440df /modules | |
parent | 61a0a405c6764d660d5c26f261eaa069fa4c1765 (diff) | |
download | puppet-d3a585bdc784cf848b641e63c289a832a1e1360c.tar puppet-d3a585bdc784cf848b641e63c289a832a1e1360c.tar.gz puppet-d3a585bdc784cf848b641e63c289a832a1e1360c.tar.bz2 puppet-d3a585bdc784cf848b641e63c289a832a1e1360c.tar.xz puppet-d3a585bdc784cf848b641e63c289a832a1e1360c.zip |
- use a alias for the exec
Diffstat (limited to 'modules')
-rw-r--r-- | modules/phpbb/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 5d4ab075..7dd14621 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -65,8 +65,8 @@ class phpbb { $forums_dir = $phpbb::base::forums_dir include git::client - # TODO manage the permission of the various subdirectory - exec { "git clone git://git.$domain/forum/ $lang": + exec { "git_clone $lang": + command =>"git clone git://git.$domain/forum/ $lang", cwd => $forums_dir, creates => "$forums_dir/$lang", require => File["$forums_dir"] |