Files
confdroid_php/manifests/main/files.pp

24 lines
622 B
Puppet

## confdroid_php::main::files.pp
# Module name: confdroid_php
# Author: 12ww1160 (12ww1160@confdroid.com)
# @summary Class manages file aspects
##############################################################################
class confdroid_php::main::files (
) inherits confdroid_php::params {
require confdroid_php::main::dirs
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),
}
}