Puppet Class: riak::params

Inherited by:
riak
riak::vmargs
Defined in:
manifests/params.pp

Overview

Class: riak::params

This class implements the module params pattern, but it’s loaded using hiera as opposed to the ‘default’ usage of coding the parameter values in your manifest.

Usage

Don’t use this class directly; it’s being used where it is needed



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'manifests/params.pp', line 11

class riak::params {

  $package = $::operatingsystem ? {
    default           => 'riak'
  }

  $deps = $::operatingssytem ? {
    /(?i:centos|redhat)/  => [],
    default               => []
  }

  $package_type = $::operatingsystem ? {
    /(?i:centos|redhat)/ => 'rpm',
    default              => 'deb'
  }

  $package_provider = $::operatingsystem ? {
    /(?i:centos|redhat)/  => 'rpm',
    default               => 'dpkg'
  }

  $architecture = $::operatingsystem ? {
    /(?i:centos|redhat)/  => 'x86_64',
    default               => 'amd64'
  }

  $version = '1.2.0'

  $get = $::operatingsystem ? {
    /(?i:centos|redhat)/ => "/riak/CURRENT/rhel/6/riak-${version}-1.el6.${architecture}.${package_type}",
    default              => "/riak/CURRENT/ubuntu/precise/riak_${version}-1_${architecture}.${package_type}"
  }

  $download = "http://downloads.basho.com.s3-website-us-east-1.amazonaws.com${get}"

  $download_hash = "${download}.sha"

  $error_log = "${log_dir}/error.log"
  $info_log = "${log_dir}/console.log"
  $crash_log = "${log_dir}/crash.log"

  $log_dir = '/var/log/riak'
  $erl_log_dir = '/var/log/riak'
  $data_dir = '/var/lib/riak'
  $lib_dir = '/usr/lib/riak'
  $bin_dir = '/usr/sbin'
  $etc_dir = '/etc/riak'

  $service_autorestart = true
}