Puppet Class: flux
- Defined in:
- manifests/init.pp
Overview
Class: flux
Install and configure Flux
Parameters
[View source]
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/init.pp', line 7
class flux (
$install_path = "/Users/${::boxen_user}/Applications/Flux.app",
) {
package { 'flux-halyard':
provider => 'brewcask',
require => Homebrew::Tap['halyard/casks']
} ->
osx_login_item { 'Flux':
hidden => true,
path => $install_path
} ~>
exec { 'launch flux':
command => "/usr/bin/open ${install_path}",
refreshonly => true,
}
}
|