Puppet Class: puppet::server::setup::filesystem

Inherits:
puppet::params
Defined in:
manifests/server/setup/filesystem.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include puppet::server::setup::filesystem


7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/server/setup/filesystem.pp', line 7

class puppet::server::setup::filesystem inherits puppet::params {
  $codedir = $puppet::params::codedir
  $environmentpath = $puppet::params::environmentpath

  file {
    default:
      ensure => directory,
      owner  => 'puppet',
      group  => 'puppet',
      mode   => '0750';
    $codedir: ;
    $environmentpath: ;
  }
}