Puppet Class: modern_shell_tools::install

Defined in:
manifests/install.pp

Summary

A private class for installing prerequirements

Overview

Examples:

include modern_shell_tools::install


5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/install.pp', line 5

class modern_shell_tools::install {
  assert_private()

  package { ['wget', 'unzip', 'git']:
    ensure => installed,
  }

  file { '/opt/mst':
    ensure => directory,
  }

  Archive {
    provider => 'wget',
    require  => Package['wget', 'unzip'],
  }
}