Puppet Class: php::install::xcache

Defined in:
manifests/install/xcache.pp

Overview

Class: php::install::xcache

Install php xcache



6
7
8
9
10
11
12
13
14
15
# File 'manifests/install/xcache.pp', line 6

class php::install::xcache {

    include ::php::params

    package { 'php-php5-xcache':
        ensure  => installed,
        name    => $::php::params::php_xcache_package_name,
        require => Class['php::install'],
    }
}