Mercurial > repos > other > Puppet
view modules/php/manifests/embedded.pp @ 482:d83de9b3a62b default tip
Update hiera.yaml within Puppet config
Forgot that we manage it from here. Now has content to match
new packages
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Fri, 30 Aug 2024 16:10:36 +0100 |
parents | 3fce34f642f1 |
children |
line wrap: on
line source
# Install and configure php embedded SAPI # # === Parameters # # [*inifile*] # The path to the ini php5-embeded ini file # # [*settings*] # Hash with nested hash of key => value to set in inifile # # [*package*] # Specify which package to install # # [*ensure*] # Specify which version of the package to install # class php::embedded ( String $ensure = $php::ensure, String $package = "${php::package_prefix}${php::params::embedded_package_suffix}", Stdlib::Absolutepath $inifile = $php::params::embedded_inifile, Hash $settings = {}, ) inherits php::params { assert_private() $real_settings = lookup( 'php::embedded::settings', Hash, { 'strategy' => 'deep', 'merge_hash_arrays' => true }, $settings ) $real_package = $facts['os']['family'] ? { 'Debian' => "lib${package}", default => $package, } package { $real_package: ensure => $ensure, require => Class['php::packages'], } -> php::config { 'embedded': file => $inifile, config => $real_settings, } }