diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-03-23 22:56:47 +0100 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-03-23 22:56:47 +0100 |
commit | 7c7df901df46c2e4404b59095206e81eff44e20d (patch) | |
tree | 76396a8810984bfcfcb8026d03d5317f52b9c17b /modules | |
parent | 1284321e64c1940bae0b4adcb1851c2b067406c2 (diff) | |
download | puppet-7c7df901df46c2e4404b59095206e81eff44e20d.tar puppet-7c7df901df46c2e4404b59095206e81eff44e20d.tar.gz puppet-7c7df901df46c2e4404b59095206e81eff44e20d.tar.bz2 puppet-7c7df901df46c2e4404b59095206e81eff44e20d.tar.xz puppet-7c7df901df46c2e4404b59095206e81eff44e20d.zip |
Fix requires
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/bugzilla-dev/manifests/init.pp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/bugzilla-dev/manifests/init.pp b/modules/bugzilla-dev/manifests/init.pp index 163f3b68..eae76963 100755 --- a/modules/bugzilla-dev/manifests/init.pp +++ b/modules/bugzilla-dev/manifests/init.pp @@ -18,16 +18,14 @@ class bugzilla-dev { file { '/etc/bugzilla/localconfig': group => 'apache', mode => '0640', - content => template('bugzilla/localconfig'), - require => Package['bugzilla'], + content => template('bugzilla/localconfig') } file { '/var/lib/bugzilla/params': group => 'apache', mode => '0640', - content => template('bugzilla/params'), - require => Package['bugzilla'], + content => template('bugzilla/params') } apache::webapp_other { 'bugzilla': |