-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetadata.rb
35 lines (28 loc) · 975 Bytes
/
metadata.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
#
# 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 'mconf-lb'
maintainer 'mconf'
maintainer_email '[email protected]'
license 'MPL v2.0'
description 'Sets up an instance of Mconf LB'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.0'
supports 'ubuntu', '>= 14.04'
suggests 'mconf-db'
depends 'nodejs', '~> 3.0'
depends 'ohai', '2.0.1'
depends 'build-essential', '>= 2.0'
depends 'heartbeat', '~> 1.0'
depends 'monit-ng', '~> 2.3'
depends 'logrotate', '~> 1.9'
depends 'apt', '>= 2.9'
# to prevent issues with chef 12
depends 'seven_zip', '~> 3.0.0'
# TODO: update to 3.0 when done, 2.x is old
depends 'nginx', '~> 2.7'
recipe 'mconf-lb::default', 'Sets up an instance of Mconf LB'