Puppet Class: etcd::install

Defined in:
manifests/install.pp

Summary

This class handles the etcd installation using the operating system's package manager

Overview



8
9
10
11
12
13
14
15
16
# File 'manifests/install.pp', line 8

class etcd::install {
  assert_private()

  if length($etcd::package_names) > 0 {
    package { $etcd::package_names:
      ensure => present,
    }
  }
}