diff options
author | Michael Scherer <misc@mageia.org> | 2011-04-19 11:48:37 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-04-19 11:48:37 +0000 |
commit | 11972af7495d3f5776b6f16653892084dfa08623 (patch) | |
tree | a70e5053e0545ea979913e1e1f0c3adddbce64c9 | |
parent | 60b194df4d0202ca8791bdae9f2f754d1a840ae9 (diff) | |
download | puppet-11972af7495d3f5776b6f16653892084dfa08623.tar puppet-11972af7495d3f5776b6f16653892084dfa08623.tar.gz puppet-11972af7495d3f5776b6f16653892084dfa08623.tar.bz2 puppet-11972af7495d3f5776b6f16653892084dfa08623.tar.xz puppet-11972af7495d3f5776b6f16653892084dfa08623.zip |
disable requires, as alamut complain
-rw-r--r-- | modules/phpbb/manifests/init.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 36b8a140..0e0dff0d 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -91,7 +91,9 @@ class phpbb { description => "$lang db for phpbb forum", user => $user, tag => $tag, - require => Postgresql::User[$user] + # this break due to the way it is remotely declared + # this should only be a issue in case of bootstrapping again + # require => Postgresql::User[$user] } } |