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

  class { 'postgresql::server': }

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