## confdroid_ssh::main::dirs.pp # Module name: confdroid_ssh # Author: 12ww1160 (12ww1160@confdroid.com) # @summary Class manages directories ############################################################################## class confdroid_ssh::main::dirs ( ) inherits confdroid_ssh::params { require confdroid_ssh::main::install file { $ssh_etc_path: ensure => directory, path => $ssh_etc_path, owner => $sshd_user, group => $sshd_user, mode => '0755', selrange => s0, selrole => object_r, seltype => etc_t, seluser => system_u, } file { $sshd_custom_path: ensure => directory, owner => $sshd_user, group => $sshd_user, mode => '0755', selrange => s0, selrole => object_r, seltype => etc_t, seluser => system_u, } }