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

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
wfarr committed Feb 12, 2013
1 parent b20c27c commit 2a2cba3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,21 @@
include homebrew::config
include xquartz

$version = '2.7.3-boxen1'

homebrew::formula { 'python':
before => Package['boxen/brews/python']
}

package { 'boxen/brews/python':
ensure => '2.7.3-boxen1',
ensure => $version,
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",
target => "${homebrew::config::installdir}/Cellar/python/${version}/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages",
require => Package['boxen/brews/python']
}

Expand Down

0 comments on commit 2a2cba3

Please sign in to comment.