mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
22 lines
266 B
Puppet
22 lines
266 B
Puppet
# define: php::phpd
|
|
#
|
|
# Provision php.d config
|
|
#
|
|
# Parameters:
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
define php::phpd {
|
|
|
|
include php
|
|
|
|
file { "/etc/php.d/$name.ini":
|
|
content => template("php/$name.ini.erb"),
|
|
notify => Service['apache'],
|
|
}
|
|
}
|