Skip to content

Commit

Permalink
add missing quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Sturm committed Mar 15, 2012
1 parent e886480 commit 8413742
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
license "Apache 2.0"
description "Graylog2 log management and exception tracking"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.0.3"
version "0.0.4"

depends "elasticsearch"
depends "java"
Expand Down
18 changes: 9 additions & 9 deletions templates/default/general.yml.erb
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
general:
# Used for example to generate permalinks. Don't add 'http://' or trailing
# slashes.
external_hostname: <%= @public_hostname %>
external_hostname: "<%= @public_hostname %>"
# http://ruby-doc.org/core/classes/Time.html#M000298 (strftime syntax)
date_format: <%= node['graylog2']['web_interface']['date_format'] %>
date_format: "<%= node['graylog2']['web_interface']['date_format'] %>"
# Allowing deleting of messages negatively impacts performance
allow_deleting: <%= node['graylog2']['web_interface']['allow_deleting'] %>
allow_deleting: "<%= node['graylog2']['web_interface']['allow_deleting'] %>"
# Enables manual (/versioncheck/index) and automatic (every 30min from
# overview page) version checking against graylog2.org via HTTP.
allow_version_check: <%= node['graylog2']['web_interface']['allow_version_check'] %>
allow_version_check: "<%= node['graylog2']['web_interface']['allow_version_check'] %>"
# Set an own cookie name - Useful for multiple deployments on same host like
# example.org/staging1/graylog2, example.org/staging2/graylog2
# custom_cookie_name: graylog2_staging1

# Settings for stream subscription emails.
subscriptions:
from: <%= node['graylog2']['web_interface']['subscriptions']['from'] %>
from: "<%= node['graylog2']['web_interface']['subscriptions']['from'] %>"
subject: "[graylog2] Subscription"

# Settings for stream alarm emails.
streamalarms:
from: <%= node['graylog2']['web_interface']['streamalarms']['from'] %>
from: "<%= node['graylog2']['web_interface']['streamalarms']['from'] %>"
subject: "[graylog2] Stream alarm!"

hoptoad:
enabled: <%= node['graylog2']['web_interface']['hoptoad']['enable'] %>
ssl: <%= node['graylog2']['web_interface']['hoptoad']['ssl'] %>
api_key: <%= node['graylog2']['web_interface']['hoptoad']['api_key'] %>
enabled: "<%= node['graylog2']['web_interface']['hoptoad']['enable'] %>"
ssl: "<%= node['graylog2']['web_interface']['hoptoad']['ssl'] %>"
api_key: "<%= node['graylog2']['web_interface']['hoptoad']['api_key'] %>"

0 comments on commit 8413742

Please sign in to comment.