diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-21 15:14:56 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-21 15:14:56 +0000 |
commit | 8c8d3e2e2a0d359afa64ad45baad165302ad6525 (patch) | |
tree | 12e6aa9324f242a8d9281c24c8b3e5ec02c11d4b /modules/phpbb | |
parent | d16c5720026ed9e8ce08b2760c02074e388c3042 (diff) | |
download | puppet-8c8d3e2e2a0d359afa64ad45baad165302ad6525.tar puppet-8c8d3e2e2a0d359afa64ad45baad165302ad6525.tar.gz puppet-8c8d3e2e2a0d359afa64ad45baad165302ad6525.tar.bz2 puppet-8c8d3e2e2a0d359afa64ad45baad165302ad6525.tar.xz puppet-8c8d3e2e2a0d359afa64ad45baad165302ad6525.zip |
add a require for ordering purpose
Diffstat (limited to 'modules/phpbb')
-rw-r--r-- | modules/phpbb/manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 3aa63d96..438a28f0 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -64,7 +64,8 @@ class phpbb { exec { "git clone git://git.$domain/forum/ $lang": cwd => $forums_dir, - creates => "$forums_dir/$lang", + creates => "$forums_dir/$lang", + require => File["$forums_dir"] } file { "$forums_dir/$lang/phpBB/config.php": |