Puppet Class: php::install::mysql

Defined in:
manifests/install/mysql.pp

Overview

Class: php::install::mysql

Install php mysql bindings



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

class php::install::mysql {

    include ::php::params

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