Puppet Class: php::install::gd

Defined in:
manifests/install/gd.pp

Overview

Class: php::install::gd

Install php-gd



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

class php::install::gd {

    include ::php::params

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