aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/web.pp
blob: 1e5ad536da085f732086d7de955ca7a403ebe323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Common utilities for web
class nodo::utils::web inherits nodo::utils::http {
  package { [
    'libxml2',
    'libxml2-dev',
    'libxslt1-dev',
    'libmysqlclient-dev',
    'g++',
    'libcurl4-openssl-dev',
    'apache2-prefork-dev',
    'goaccess',
    'apachetop',
    #'ffmpeg',
    #'flvtool2',
    #'rake',
  ]:
    ensure => installed,
  }
}