diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-08 00:09:14 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-08 00:09:14 +0200 |
commit | 8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef (patch) | |
tree | 0013e875cf7b6ba1d46b3651820f8adf3a3ac584 /modules/bugzilla/manifests | |
parent | 550987c9f86dfdfc6b3378c61826676529e1153e (diff) | |
download | puppet-8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef.tar puppet-8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef.tar.gz puppet-8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef.tar.bz2 puppet-8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef.tar.xz puppet-8dfffdf0d10d095f5f127e1e1059f73e6fa6e9ef.zip |
Fix files perm
Diffstat (limited to 'modules/bugzilla/manifests')
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 65 |
1 files changed, 63 insertions, 2 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 07ba3d81..68a0e7d9 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -8,7 +8,7 @@ class bugzilla { 'perl-JSON-RPC', 'perl-Email-MIME', 'perl-Email-Sender', - 'Math-Random-ISAAC', + 'perl-Math-Random-ISAAC', 'perl-Chart', 'perl-PatchReader', 'perl-ldap', @@ -83,7 +83,68 @@ class bugzilla { file { [ '/usr/share/bugzilla/admin.cgi', - '/usr/share/bugzilla/attachment.cgi' + '/usr/share/bugzilla/attachment.cgi', + '/usr/share/bugzilla/buglist.cgi', + '/usr/share/bugzilla/chart.cgi', + '/usr/share/bugzilla/colchange.cgi', + '/usr/share/bugzilla/config.cgi', + '/usr/share/bugzilla/createaccount.cgi', + '/usr/share/bugzilla/describecomponents.cgi', + '/usr/share/bugzilla/describekeywords.cgi', + '/usr/share/bugzilla/duplicates.cgi', + '/usr/share/bugzilla/editclassifications.cgi', + '/usr/share/bugzilla/editfields.cgi', + '/usr/share/bugzilla/editgroups.cgi', + '/usr/share/bugzilla/editmilestones.cgi', + '/usr/share/bugzilla/editproducts.cgi', + '/usr/share/bugzilla/editusers.cgi', + '/usr/share/bugzilla/editversions.cgi', + '/usr/share/bugzilla/editworkflow.cgi', + '/usr/share/bugzilla/editcomponents.cgi', + '/usr/share/bugzilla/editflagtypes.cgi', + '/usr/share/bugzilla/editkeywords.cgi', + '/usr/share/bugzilla/editparams.cgi', + '/usr/share/bugzilla/editsettings.cgi', + '/usr/share/bugzilla/editvalues.cgi', + '/usr/share/bugzilla/editwhines.cgi', + '/usr/share/bugzilla/enter_bug.cgi', + '/usr/share/bugzilla/index.cgi', + '/usr/share/bugzilla/jsonrpc.cgi', + '/usr/share/bugzilla/page.cgi', + '/usr/share/bugzilla/post_bug.cgi', + '/usr/share/bugzilla/process_bug.cgi', + '/usr/share/bugzilla/query.cgi', + '/usr/share/bugzilla/quips.cgi', + '/usr/share/bugzilla/relogin.cgi', + '/usr/share/bugzilla/reports.cgi', + '/usr/share/bugzilla/rest.cgi', + '/usr/share/bugzilla/search_plugin.cgi', + '/usr/share/bugzilla/show_bug.cgi', + '/usr/share/bugzilla/showdependencytree.cgi', + '/usr/share/bugzilla/testagent.cgi', + '/usr/share/bugzilla/userprefs.cgi', + '/usr/share/bugzilla/xmlrpc.cgi', + '/usr/share/bugzilla/report.cgi', + '/usr/share/bugzilla/request.cgi', + '/usr/share/bugzilla/sanitycheck.cgi', + '/usr/share/bugzilla/show_activity.cgi', + '/usr/share/bugzilla/showdependencygraph.cgi', + '/usr/share/bugzilla/summarize_time.cgi', + '/usr/share/bugzilla/token.cgi', + '/usr/share/bugzilla/votes.cgi', + '/usr/share/bugzilla/checksetup.pl', + '/usr/share/bugzilla/clean-bug-user-last-visit.pl', + '/usr/share/bugzilla/collectstats.pl', + '/usr/share/bugzilla/email_in.pl', + '/usr/share/bugzilla/importxml.pl', + '/usr/share/bugzilla/install-module.pl', + '/usr/share/bugzilla/jobqueue.pl', + '/usr/share/bugzilla/migrate.pl', + '/usr/share/bugzilla/runtests.pl', + '/usr/share/bugzilla/sanitycheck.pl', + '/usr/share/bugzilla/testserver.pl', + '/usr/share/bugzilla/whineatnews.pl', + '/usr/share/bugzilla/whine.pl' ]: group => 'apache', mode => '0750', |