Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from bryanveloso/master
Browse files Browse the repository at this point in the history
Ensure `site-packages` is created
  • Loading branch information
wfarr committed Feb 12, 2013
2 parents 8d8b291 + 3019957 commit b20c27c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
class python {
include boxen::config
include homebrew
include homebrew::config
include xquartz

homebrew::formula { 'python':
Expand All @@ -17,6 +18,13 @@
require => Class['xquartz']
}

file { "${homebrew::config::installdir}/lib/python2.7/site-packages":
force => true,
ensure => link,
target => "${homebrew::config::installdir}/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages",
require => Package['boxen/brews/python']
}

file { "${boxen::config::envdir}/python.sh":
source => 'puppet:///modules/python/python.sh'
}
Expand Down

0 comments on commit b20c27c

Please sign in to comment.