2025-04-24 18:45:54 +02:00
|
|
|
## php_cd::main::files.pp
|
|
|
|
|
# Module name: php_cd
|
|
|
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
|
|
|
# @summary Class manages file aspects
|
|
|
|
|
##############################################################################
|
|
|
|
|
class php_cd::main::files (
|
|
|
|
|
|
|
|
|
|
) inherits php_cd::params {
|
|
|
|
|
require php_cd::main::dirs
|
2025-04-24 18:54:44 +02:00
|
|
|
|
|
|
|
|
file { $php_ini_file:
|
|
|
|
|
ensure => file,
|
|
|
|
|
path => $php_ini_file,
|
|
|
|
|
owner => 'root',
|
|
|
|
|
group => 'root',
|
|
|
|
|
mode => '0644',
|
|
|
|
|
selrange => s0,
|
|
|
|
|
selrole => object_r,
|
|
|
|
|
seltype => etc_t,
|
|
|
|
|
seluser => system_u,
|
|
|
|
|
content => template($php_ini_erb),
|
|
|
|
|
}
|
2025-04-24 18:45:54 +02:00
|
|
|
}
|