Skip to content

Commit

Permalink
Merge pull request #167 from jpfeil/issues/166-upgrade-mesos-0.25.1
Browse files Browse the repository at this point in the history
Change mesos version to 0.25.1 (resolves #166)
  • Loading branch information
hannes-ucsc committed May 18, 2016
2 parents 329b886 + 5923b73 commit aaa8ccd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/src/cgcloud/core/mesos_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ class MesosBox( UbuntuBox ):
"""

def _mesos_version( self ):
return '0.25.1'

def _mesos_egg_version( self ):
return '0.25.0'

@fabric_task
Expand All @@ -33,7 +36,7 @@ def _post_install_packages( self ):

@fabric_task
def __install_mesos_egg( self ):
egg = 'mesos-' + self._mesos_version( ) + '-py2.7-linux-x86_64.egg'
egg = 'mesos-' + self._mesos_egg_version( ) + '-py2.7-linux-x86_64.egg'
version = self.release( ).version
run( fmt( 'wget http://downloads.mesosphere.io/master/ubuntu/{version}/{egg}' ) )
# We need a newer version of protobuf than what comes default on Ubuntu
Expand Down

0 comments on commit aaa8ccd

Please sign in to comment.