Puppet Class: apache::mod::php
- Defined in:
- puppet/modules/apache/manifests/mod/php.pp
Overview
Class: apache::mod::php
3 4 5 6 7 8 9 10 11 |
# File 'puppet/modules/apache/manifests/mod/php.pp', line 3
class apache::mod::php {
package { 'libapache2-mod-php7.4':
ensure => present,
require => Class['php::repository'],
}
apache::mod_conf { 'php7.4':
require => Package['libapache2-mod-php7.4'],
}
}
|