Puppet Class: dropbox

Defined in:
manifests/init.pp

Overview

Class: dropbox

Install and configure Dropbox

Parameters

Parameters:

  • install_path (Any) (defaults to: "/Users/${::boxen_user}/Applications/Dropbox.app")
  • dropbox_root (Any) (defaults to: "/Users/${::boxen_user}/Dropbox")


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/init.pp', line 7

class dropbox (
  $install_path = "/Users/${::boxen_user}/Applications/Dropbox.app",
  $dropbox_root = "/Users/${::boxen_user}/Dropbox"
) {
  package { 'dropbox-halyard':
    provider => 'brewcask',
    require  => Homebrew::Tap['halyard/casks']
  } ->
  osx_login_item { 'Dropbox':
    hidden => true,
    path   => $install_path
  } ~>
  exec { 'launch dropbox':
    command     => "/usr/bin/open ${install_path}",
    refreshonly => true,
  }
}