diff options
author | Dan Fandrich <danf@mageia.org> | 2024-10-30 19:32:42 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-10-30 19:32:42 -0700 |
commit | 1c257b4fe3d712d167433bdc75df44fc01895fa8 (patch) | |
tree | 5ed631da04d4f0b672bd1499b0d1ad9d8b3f1fef /modules | |
parent | 37169b9ac4701fb659bb90e5ad5ba73fca6cd684 (diff) | |
download | puppet-1c257b4fe3d712d167433bdc75df44fc01895fa8.tar puppet-1c257b4fe3d712d167433bdc75df44fc01895fa8.tar.gz puppet-1c257b4fe3d712d167433bdc75df44fc01895fa8.tar.bz2 puppet-1c257b4fe3d712d167433bdc75df44fc01895fa8.tar.xz puppet-1c257b4fe3d712d167433bdc75df44fc01895fa8.zip |
Ensure Bugzilla mining directory has the right mode
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index fdba14de..5da26c07 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -83,7 +83,8 @@ class bugzilla { require => Git::Snapshot[$bugzilla_location], } - file { "$bugzilla_location/data": + file { ["$bugzilla_location/data", + "$bugzilla_location/data/mining"]: ensure => directory, owner => 'apache', group => 'apache', |