Puppet Class: zsh

Defined in:
manifests/init.pp

Overview

Parameters:

  • package (String[1]) (defaults to: 'zsh')
  • completion_package (String[1]) (defaults to: 'zsh-completions')
  • install_completions (Boolean) (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
36
37
# File 'manifests/init.pp', line 12

class zsh (
  String[1] $package = 'zsh',
  String[1] $completion_package = 'zsh-completions',
  Boolean $install_completions = true
) {
  package { $package:
    provider => brew
  } ->
  file_line { 'add zsh to /etc/shells':
    path => '/etc/shells',
    line => "${homebrew::path}/bin/zsh",
  } ->
  file { '/etc/zprofile':
    ensure  => present,
    content => ''
  } ->
  osx_shell { $::id:
    shell => "${homebrew::path}/bin/zsh"
  }

  if $install_completions {
    package { $completion_package:
      provider => brew
    }
  }
}