Puppet Class: asdf

Defined in:
manifests/init.pp

Overview

Parameters:

  • path (String[1]) (defaults to: '/opt/asdf')
  • owner (String[1]) (defaults to: $facts['id'])
  • group (String[1]) (defaults to: $facts['gid'])
  • repo (String[1]) (defaults to: 'https://github.com/asdf-vm/asdf')
  • plugins (Hash[String[1], Hash]) (defaults to: {})
  • versions (Hash[String[1], Hash]) (defaults to: {})


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',
  String[1] $owner = $facts['id'],
  String[1] $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)
}