Puppet Class: role::simplelamp2

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

Overview

SPDX-License-Identifier: Apache-2.0

class: role::simplelamp2

Sets up a simple LAMP server for use by arbitrary php applications

httpd (“apache”), memcached, PHP, MariaDB

As opposed to the original simplelamp role it uses MariaDB instead of MySQL and the httpd instead of the apache module.



11
12
13
14
15
16
17
18
19
# File 'modules/role/manifests/simplelamp2.pp', line 11

class role::simplelamp2 {

    system::role { 'simplelamp2':
        ensure      => 'present',
        description => 'httpd, memcached, PHP, mariadb',
    }

    include ::profile::simplelamp2
}