Puppet Class: coreutils

Defined in:
manifests/init.pp

Overview

Class: coreutils

Full description of class coreutils here.

Parameters

sample_parameter

Explanation of what this parameter affects and what it defaults to.



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
# File 'manifests/init.pp', line 10

class coreutils (
) {
  package { [
    'screen',
    'wget',
    'watch',
    'tmux',
    'socat',
    'coreutils',
    'findutils',
    'gnu-tar',
    'htop-osx',
    'netcat',
    'pwgen',
    'nmap',
    'the_silver_searcher',
    'cmake'
  ]:
    require => Homebrew::Tap['homebrew/dupes']
  }

  package { 'grep':
    install_options => [
      '--build-from-source',
      '--with-default-names'
    ],
    require         => Homebrew::Tap['homebrew/dupes']
  }

  file { '/usr/local/bin/stty':
    ensure => 'link',
    target => '/bin/stty'
  }
}