diff options
author | Thomas Backlund <tmb@mageia.org> | 2016-02-07 19:20:04 +0200 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2016-02-07 19:20:04 +0200 |
commit | 9b92d625f6f0372652d0517817317463f3940838 (patch) | |
tree | d41285f1c0a125bb3cf381f0e890e4c290bc350e /modules/bugzilla | |
parent | f69b491fe1b38cdf3e47520c4ae6027bcd3eed44 (diff) | |
download | puppet-9b92d625f6f0372652d0517817317463f3940838.tar puppet-9b92d625f6f0372652d0517817317463f3940838.tar.gz puppet-9b92d625f6f0372652d0517817317463f3940838.tar.bz2 puppet-9b92d625f6f0372652d0517817317463f3940838.tar.xz puppet-9b92d625f6f0372652d0517817317463f3940838.zip |
fix bugzilla extension_location variable lookup
Diffstat (limited to 'modules/bugzilla')
-rw-r--r-- | modules/bugzilla/templates/webapp_bugzilla.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bugzilla/templates/webapp_bugzilla.conf b/modules/bugzilla/templates/webapp_bugzilla.conf index c14ef701..9446ce4f 100644 --- a/modules/bugzilla/templates/webapp_bugzilla.conf +++ b/modules/bugzilla/templates/webapp_bugzilla.conf @@ -38,8 +38,8 @@ Alias /graphs/ <%= path_data_directory %>/graphs/ # This should work automatically, but perhaps something # in our Bugzilla packaging breaks this? -Alias /extensions/Mageia/web/ <%= extension_location %>/web/ -<Directory <%= extension_location %>/web/> +Alias /extensions/Mageia/web/ <%= scope.lookupvar("bugzilla::extension_location") %>/web/ +<Directory <%= scope.lookupvar("bugzilla::extension_location") %>/web/> <FilesMatch \.png$> Order allow,deny Allow from all |