diff options
-rwxr-xr-x | modules/bugzilla/manifests/init.pp | 11 | ||||
-rw-r--r-- | modules/bugzilla/templates/localconfig | 1 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 6fc4eddd..d2254300 100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -32,12 +32,11 @@ class bugzilla { password => $pgsql_password, } -# Only enable the first time ( need to be fixed)' -# file { "$bugzilla_location/localconfig": -# group => 'apache', -# mode => '0640', -# content => template('bugzilla/localconfig') -# } + file { "$bugzilla_location/localconfig": + group => 'apache', + mode => '0640', + content => template('bugzilla/localconfig') + } file { "$bugzilla_location/data/params.json": diff --git a/modules/bugzilla/templates/localconfig b/modules/bugzilla/templates/localconfig index fc10086b..3e304084 100644 --- a/modules/bugzilla/templates/localconfig +++ b/modules/bugzilla/templates/localconfig @@ -119,3 +119,4 @@ $interdiffbin = '/usr/bin/interdiff'; # are using that feature of the Patch Viewer.) $diffpath = '/usr/bin'; +$site_wide_secret = '<%= bugzilla_secret_key %>'; |