5
6
7
8
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
|
# File 'manifests/init.pp', line 5
class asdf (
String[1] $path = '/opt/asdf',
Variant[String[1], Integer] $owner = $facts['id'],
Variant[String[1], Integer] $group = $facts['gid'],
String[1] $repo = 'https://github.com/asdf-vm/asdf',
Hash[String[1], Hash] $plugins = {},
Hash[String[1], Hash] $versions = {}
) {
vcsrepo { $path:
ensure => latest,
provider => git,
source => $repo,
owner => $owner,
group => $group
}
$packages = [
'automake',
'autoconf',
'openssl',
'libyaml',
'readline',
'libxslt',
'libtool',
'unixodbc'
]
package { $packages:
ensure => present,
provider => brew,
before => Vcsrepo[$path]
}
$plugins.each |String[1] $plugin, Hash $plugin_data| {
if has_key($plugin_data, 'versions') {
Asdf::Version { $plugin:
versions => $plugin_data['versions']
}
}
}
create_resources(asdf::plugin, $plugins)
}
|