-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
25 lines (21 loc) · 843 Bytes
/
metadata.rb
File metadata and controls
25 lines (21 loc) · 843 Bytes
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
#
# This file is part of the Mconf project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
name 'exception-notifier'
maintainer 'mconf'
maintainer_email 'mconf@mconf.org'
license 'MPL v2.0'
description 'Catch exceptions in log files and send emails with the content'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.0.2'
%w{debian ubuntu}.each do |os|
supports os
end
depends 'logrotate', '~> 1.9.0'
depends 'fluentd', '>= 0.0.6'
# requires fork 'https://github.com/mconf-cookbooks/fluentd-cookbook'
recipe 'exception-notifier::default', 'Installs fluentd to parse logs and notify in cases of exceptions'