Sha256: 564cedf50760b9fda3b44d16def6a90c6671bfcd3fe0df927ec082ed2b3097e8

Contents?: true

Size: 834 Bytes

Versions: 20

Compression:

Stored size: 834 Bytes

Contents

# OS specific parameters
class staging::params {
  case $::osfamily {
    default: {
      $path      = '/opt/staging'
      $owner     = '0'
      $group     = '0'
      $mode      = '0755'
      $exec_path = '/usr/local/bin:/usr/bin:/bin'
    }
    'Solaris': {
      $path      = '/opt/staging'
      $owner     = '0'
      $group     = '0'
      $mode      = '0755'
      $exec_path = '/usr/local/bin:/usr/bin:/bin:/usr/sfw/bin'
    }
    'windows': {
      $path      = $::staging_windir
      $owner     = 'S-1-5-32-544' # Adminstrators
      $group     = 'S-1-5-18'     # SYSTEM
      $mode      = '0660'
      $exec_path = $::path
    }
    'FreeBSD': {
      $path      = '/var/tmp/staging'
      $owner     = '0'
      $group     = '0'
      $mode      = '0755'
      $exec_path = '/usr/local/bin:/usr/bin:/bin'
    }
  }
}

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-retrospec-1.8.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.7.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.6.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.6.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.5.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.4.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.4.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.3.2 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.3.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.3.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.2.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.2.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.1.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-1.0.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.12.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.12.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.11.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.10.0 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.9.1 spec/fixtures/modules/staging/manifests/params.pp
puppet-retrospec-0.9.0 spec/fixtures/modules/staging/manifests/params.pp