-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathExampleArsonConfig.rb
42 lines (34 loc) · 1.34 KB
/
ExampleArsonConfig.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This is the master config for arson. It's regular Ruby code.
module ArsonConfig
# Sets the level of log messages to output; leave this alone
# unless you're debugging, since the log messages are pretty
# infrequent at INFO.
LogLevel = Logger::INFO
#LogLevel = Logger::DEBUG
# The directory to store the log files. If started with the -t
# option, ouptuts to STDERR. Otherwise, everything is put in a
# file named arson.output in this directory, except exceptions,
# which are put in arson.log.
LogDir = "/home/rpowell/arson/"
# Set to an email address if you want want be emailed on severe
# errors
SystemEmail = nil
# Set to true to see debugging information for all Jabber
# stanzas.
JabberDebug = false
#JabberDebug = true
# This is the jabber commonent information that you've set up on
# your jabber server; see the README file for details.
JabberComponentName = 'campfire.localhost'
JabberComponentHost = 'localhost'
JabberComponentSecret = '[COMPONENT PASSWORD]'
# Any given arson server only supports one campfire domain; this
# is the information for that domain.
CampfireDomain = 'engineyard.campfirenow.com'
CampfireUseSSL = true
# This is a list of user config files to import. These are YAML
# files; see example_arsonrc for details.
Configs = [
"/home/[user]/.arsonrc",
]
end