Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

fix this to work on ubuntu 14.04 too #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Mesos is a cluster manager that provides efficient resource isolation and sharin
* ruby
* prerequisites:

gem install fpm
sudo apt-get install python-dev autoconf automake git make libssl-dev libcurl3
sudo apt-get install python-dev autoconf automake git-core make libssl-dev libcurl4-nss-dev libtool ruby-dev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maven is also a requirement now for full builds of Mesos 0.18.1-rc2+

sudo gem install fpm

define in e.g. `~/.bash_profile` a `MAINTAINER` variable

Expand Down
6 changes: 3 additions & 3 deletions build_mesos
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function display_version {

function create_installation {(
local pwd="$(pwd -P)"
mkdir -p toor
sudo rm -rf toor && mkdir -p toor
( cd build && make install DESTDIR="$pwd"/toor )
cd toor
mkdir -p usr/share/doc/mesos etc/default etc/mesos var/log/mesos
Expand All @@ -138,7 +138,7 @@ function create_installation {(
echo zk://localhost:2181/mesos > etc/mesos/zk
init_scripts "$linux"
jars
chown -R 0:0 .
sudo chown -R 0:0 .
)}

function init_scripts {
Expand All @@ -163,7 +163,7 @@ function init_scripts {

function jars {
mkdir -p usr/share/java/
mv ../build/src/mesos-*.jar usr/share/java/
mv ../build/src/java/target/mesos-*.jar usr/share/java/
}

function pkg {
Expand Down