Puppet Class: role::memcached

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

Overview

SPDX-License-Identifier: Apache-2.0



2
3
4
5
6
7
8
9
10
11
12
13
# File 'modules/role/manifests/memcached.pp', line 2

class role::memcached{

    system::role { 'memcached':
        description => 'Basic memcached role.',
    }

    include ::profile::base::production
    include ::profile::firewall
    include profile::memcached::instance
    #include profile::memcached::memkeys
    include profile::memcached::performance
}