-
Notifications
You must be signed in to change notification settings - Fork 20
/
metadata.rb
40 lines (37 loc) · 2.12 KB
/
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
36
37
38
39
40
name 'zabbix_lwrp'
maintainer 'LLC Express 42'
maintainer_email '[email protected]'
license 'MIT'
description 'Installs and configures Zabbix agent and server with PostgreSQL and Nginx. Provides LWRP for creating and modifying Zabbix objects.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.4.2'
chef_version '>= 12.5' if respond_to?(:chef_version)
source_url 'https://github.com/express42/zabbix_lwrp' if respond_to?(:source_url)
issues_url 'https://github.com/express42/zabbix_lwrp/issues' if respond_to?(:issues_url)
depends 'apt'
depends 'build-essential'
depends 'chef_nginx'
depends 'chocolatey'
depends 'database'
depends 'lvm'
depends 'php-fpm'
depends 'postgresql'
depends 'mysql2_chef_gem'
depends 'mysql'
depends 'yum-mysql-community'
recipe 'zabbix_lwrp::agent_linux', 'Installs and configures Zabbix agent for Linux.'
recipe 'zabbix_lwrp::agent_win_bin', 'Installs and configures Zabbix agent for Windows.'
recipe 'zabbix_lwrp::agent_win_choco', 'Installs and configures Zabbix agent for Windows.'
recipe 'zabbix_lwrp::agent', 'Installs and configures Zabbix agent.'
recipe 'zabbix_lwrp::connect', 'Connects to Zabbix API to sync configuration.'
recipe 'zabbix_lwrp::database', 'Installs and configures Zabbix database.'
recipe 'zabbix_lwrp::default', 'Installs and configures Zabbix official repository and agent.'
recipe 'zabbix_lwrp::host', 'Creates host via Zabbix API.'
recipe 'zabbix_lwrp::java_gateway', 'Installs and configures Zabbix Java Gateway.'
recipe 'zabbix_lwrp::partition', 'Configures LVM for Zabbix database.'
recipe 'zabbix_lwrp::repository', 'Installs Zabbix official repository.'
recipe 'zabbix_lwrp::server', 'Installs and configures Zabbix server.'
recipe 'zabbix_lwrp::web', 'Installs and configures Zabbix frontend.'
supports 'ubuntu'
supports 'centos'
supports 'windows'