Puppet Class: zsh

Defined in:
manifests/init.pp

Overview

Parameters:

  • package (Any) (defaults to: 'zsh')
  • completion_package (Any) (defaults to: 'zsh-completions')
  • tap (Any) (defaults to: undef)
  • install_completions (Any) (defaults to: true)


12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'manifests/init.pp', line 12

class zsh (
  $package = 'zsh',
  $completion_package = 'zsh-completions',
  $tap = undef,
  $install_completions = true
) {
  homebrew::package { $package:
    tap => $tap
  } ->
  file_line { 'add zsh to /etc/shells':
    path => '/etc/shells',
    line => "${homebrew::rootdir}/bin/zsh",
  } ->
  file { '/etc/zprofile':
    ensure  => present,
    content => ''
  }

  if $install_completions {
    homebrew::package { $completion_package:
      tap => $tap,
    }
  }
}