diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-06 15:24:26 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-06 15:24:26 +0200 |
commit | 539a28ba4cb1c8b8a0a15119d03a433a83fd4caa (patch) | |
tree | 2abf89ab4c22d9b8c9745a3ae1e432d37e3017a7 /modules/bugzilla-dev/manifests | |
parent | f74cd036634f7e30c7e50e5d4d40e14d0a6fc216 (diff) | |
download | puppet-539a28ba4cb1c8b8a0a15119d03a433a83fd4caa.tar puppet-539a28ba4cb1c8b8a0a15119d03a433a83fd4caa.tar.gz puppet-539a28ba4cb1c8b8a0a15119d03a433a83fd4caa.tar.bz2 puppet-539a28ba4cb1c8b8a0a15119d03a433a83fd4caa.tar.xz puppet-539a28ba4cb1c8b8a0a15119d03a433a83fd4caa.zip |
Fix bugzilla path
Diffstat (limited to 'modules/bugzilla-dev/manifests')
-rwxr-xr-x | modules/bugzilla-dev/manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bugzilla-dev/manifests/init.pp b/modules/bugzilla-dev/manifests/init.pp index 6732f2e5..c258e3e4 100755 --- a/modules/bugzilla-dev/manifests/init.pp +++ b/modules/bugzilla-dev/manifests/init.pp @@ -33,7 +33,7 @@ class bugzilla-dev { } $bugs_vhost = "bugs-dev.${::domain}" - $vhost_root = '/usr/share/bugzilla/www' + $vhost_root = '/usr/share/bugzilla' apache::vhost::redirect_ssl { $bugs_vhost: } @@ -58,7 +58,7 @@ class bugzilla-dev { require => Git::Snapshot[$bugzilla_location], } - file { '/usr/share/bugzilla/www/robots.txt': + file { '/usr/share/bugzilla/robots.txt': group => 'apache', mode => '0640', content => template('bugzilla/robots.txt') |