Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/discourse/manifests/init.pp

Issue 9432188: Configure secret_token (assuming it`s actually used anywhere) and document other private settings (Closed)
Patch Set: Created Feb. 28, 2013, 11:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: modules/discourse/manifests/init.pp
===================================================================
--- a/modules/discourse/manifests/init.pp
+++ b/modules/discourse/manifests/init.pp
@@ -155,16 +155,22 @@ class discourse inherits private::discou
}
discourse::sitesetting {'company_domain':
ensure => present,
type => 1,
value => 'eyeo.com'
}
+ discourse::sitesetting {'secret_token':
+ ensure => present,
+ type => 1,
+ value => $cookie_secret
+ }
+
Discourse::Postactiontype <| |> {
require => Exec['/usr/local/bin/init-discourse']
}
discourse::postactiontype {'bookmark':
ensure => present,
id => 1,
position => 1

Powered by Google App Engine
This is Rietveld