diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-24 15:24:17 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-24 15:24:17 +0000 |
commit | b73fb3f38977a46d71414220b50ad6c969f550d3 (patch) | |
tree | 3dcc89c4afd09bc1fe62037bdeb711369bac1019 | |
parent | e778f2c1214e3f8238e63380f8f7e75f236d5223 (diff) |
Supply a default configuration file.
-rw-r--r-- | debian/install | 1 | ||||
-rw-r--r-- | etc/custodian/custodian.cfg | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/debian/install b/debian/install index 30c8c09..74785a5 100644 --- a/debian/install +++ b/debian/install @@ -1,2 +1,3 @@ lib/* usr/lib/ruby/1.8/ bin/* usr/bin/ +etc/* etc/ diff --git a/etc/custodian/custodian.cfg b/etc/custodian/custodian.cfg new file mode 100644 index 0000000..1df3a2a --- /dev/null +++ b/etc/custodian/custodian.cfg @@ -0,0 +1,30 @@ + +# +# This configuration file controls global settings for the +# custodian alerter +# + + + +# +# The address if the beanstalkd server to use +# +# queue_server = 127.0.0.1:11300 + +# +# The alerting method to use +# +# alerter = smtp +# alerter = mauve + + +# +# The log-file to use for the worker +# +# log_file = custodian-dequeue.log + + +# +# The timeout period to use for tests +# +# timeout = 30 |