summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 94e50b9b38700c46faaed128da9de1ff37187378 (plain)
1
2
3
4
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
# Class: augeas
#
# Install and configure Augeas
#
# Parameters:
#   ['version']      - the desired version of Augeas
#   ['ruby_package'] - the desired package name of the Ruby bindings for Augeas
#   ['ruby_version'] - the desired version of the Ruby bindings for Augeas
#   ['lens_dir']     - the lens directory to use
#   ['purge']        - whether to purge lens directories
class augeas (
  $version      = present,
  $ruby_package = $::augeas::params::ruby_pkg,
  $ruby_version = present,
  $lens_dir     = $::augeas::params::lens_dir,
  $purge        = true,
) inherits augeas::params {

  if versioncmp($::puppetversion, '4.0.0') >= 0 {
    anchor { 'augeas::begin': }
    -> class {'::augeas::files': }
    -> anchor { 'augeas::end': }
  } else {
    anchor { 'augeas::begin': }
    -> class {'::augeas::packages': }
    -> class {'::augeas::files': }
    -> anchor { 'augeas::end': }

    # lint:ignore:spaceship_operator_without_tag
    Package['ruby-augeas', $augeas::params::augeas_pkgs] -> Augeas <| |>
    # lint:endignore
  }

}