9
10
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
61
62
63
64
65
66
67
68
|
# File 'manifests/config.pp', line 9
class riak::config (
$absent = false,
$manage_repos = true,
) {
$package_repo_type = $::operatingsystem ? {
/(?i:centos|redhat|Amazon)/ => 'yum',
/(?i:debian|ubuntu)/ => 'apt',
# https://github.com/kelseyhightower/puppet-homebrew
/(?i:darwin)/ => 'brew',
default => 'yum',
}
$manage_yum_repo = $absent ? {
true => 'absent',
default => '1',
}
$manage_apt_repo = $absent ? {
true => 'absent',
default => 'present',
}
if $manage_repos == true {
case $package_repo_type {
'apt': {
file { 'apt-basho':
ensure => $manage_apt_repo,
path => '/etc/apt/sources.list.d/basho.list',
content => "deb http://apt.basho.com ${$::lsbdistcodename} main\n",
}
package { 'curl':
ensure => installed,
}
exec { 'add-basho-key':
command => '/usr/bin/curl http://apt.basho.com/gpg/basho.apt.key | /usr/bin/apt-key add -',
unless => '/usr/bin/apt-key list | /bin/grep -q "Basho Technologies"',
require => [ Package['curl'] ],
}
exec { 'apt-get-update':
command => '/usr/bin/apt-get update',
subscribe => File['apt-basho'],
refreshonly => true,
}
}
'yum': {
yumrepo { 'basho-products':
descr => 'basho packages for $releasever-$basearch',
baseurl => 'http://yum.basho.com/el/6/products/$basearch',
gpgcheck => 1,
enabled => $manage_yum_repo,
gpgkey => 'http://yum.basho.com/gpg/RPM-GPG-KEY-basho',
}
}
default: {
fail("Riak supports apt and yum for package_repo_type and you specified ${package_repo_type}")
}
}
}
}
|