summaryrefslogtreecommitdiff
path: root/manifests/zabbix_server.pp
blob: 4ef1ff4bbb3d300f01c8a71e8379df1c5c1fedcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# username: Admin
# Password: zabbix
class profiles::zabbix_server (
  String $zabbix_url = $::fqdn,
) {
  class { 'apache':
    mpm_module => 'prefork',
  }
  include apache::mod::php

  # puppetlabs-apt needs this
  ensure_packages(['gpg'])

  class { 'postgresql::server': }

  class { 'zabbix':
    zabbix_url => $zabbix_url,
  }
}