Puppet Class: role::arclamp

Defined in:
modules/role/manifests/arclamp.pp

Overview

Class: role::arclamp

Host the Arc Lamp receiver (Redis), processors, and static file server.

See also profile::arclamp::processor.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'modules/role/manifests/arclamp.pp', line 8

class role::arclamp {

    system::role { 'arclamp':
        description => 'Arc Lamp service'
    }

    include ::profile::base::production
    include ::profile::firewall
    include ::profile::backup::host
    include ::profile::arclamp::processor
    include ::profile::arclamp::redis

    # class httpd installs mpm_event by default, and once installed,
    # it cannot easily be uninstalled.
    class { '::httpd::mpm':
        mpm => 'prefork'
    }

    # Web server (for arclamp)
    class { '::httpd':
        modules => ['headers', 'mime'],
    }
}