Puppet Class: php_cd::main::files
- Inherits:
- php_cd::params
- Defined in:
- manifests/main/files.pp
Summary
Class manages file aspectsOverview
php_cd::main::files.pp Module name: php_cd Author: Arne Teuke (arne_teuke@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/main/files.pp', line 6
class php_cd::main::files (
) inherits php_cd::params {
require php_cd::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),
}
}
|