Puppet Class: cd_alloy::main::dirs

Inherits:
cd_alloy::params
Defined in:
manifests/main/dirs.pp

Summary

Class manages required directories for the cd_alloy module

Overview

cd_alloy::main::dirs.pp Module name: cd_alloy 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
24
# File 'manifests/main/dirs.pp', line 6

class cd_alloy::main::dirs (

) inherits cd_alloy::params {

  require cd_alloy::main::install

  # main config dir
  file { $ay_main_dir:
    ensure    =>  directory,
    path      =>  $ay_main_dir,
    owner     =>  'root',
    group     =>  'root',
    mode      =>  '0770',
    selrange  =>  s0,
    selrole   =>  object_r,
    seltype   =>  etc_t,
    seluser   =>  system_u,
  }
}