All functions of 'bundle exec rake dots' now work

This commit is contained in:
Gene Liverman 2017-06-04 17:03:47 -07:00
parent 48b87f7744
commit 96d067d035
6 changed files with 69 additions and 23 deletions

View file

@ -8,6 +8,8 @@ class profile::mac {
# creates => '/usr/local/bin/brew',
# }
$homedir = lookup('homedir')
#Package { provider => 'homebrew' }
$homebrew_packages = [
'bash-completion',
@ -40,7 +42,12 @@ class profile::mac {
]
package { $homebrew_packages:
ensure => installed,
ensure => 'installed',
provider => 'brew',
}
vcsrepo { "${homedir}/.vim/bundle/Vundle.vim":
ensure => 'present',
provider => 'git',
}
}