Repository: aurora Updated Branches: refs/heads/master 2535c467d -> 367e6b77b
Amend install instructions to cover dependency missing from mesos deb. Reviewed at https://reviews.apache.org/r/42017/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/367e6b77 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/367e6b77 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/367e6b77 Branch: refs/heads/master Commit: 367e6b77b1683b6625b091aa3d640575c7fb258e Parents: 2535c46 Author: Bill Farner <[email protected]> Authored: Wed Jan 6 21:54:19 2016 -0800 Committer: Bill Farner <[email protected]> Committed: Wed Jan 6 21:54:19 2016 -0800 ---------------------------------------------------------------------- docs/installing.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/367e6b77/docs/installing.md ---------------------------------------------------------------------- diff --git a/docs/installing.md b/docs/installing.md index 48f8c4e..1620a6f 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -260,10 +260,15 @@ are identical for both. ### Mesos on Ubuntu Trusty + sudo apt-get update + sudo apt-get install -y software-properties-common sudo add-apt-repository ppa:openjdk-r/ppa -y sudo apt-get update - sudo apt-get install -y software-properties-common wget libsvn1 libcurl3 openjdk-8-jre-headless + sudo apt-get install -y wget libsvn1 libcurl3 openjdk-8-jre-headless + + # NOTE: This appears to be a missing dependency of the mesos deb package. + sudo apt-get install -y libcurl4-nss-dev wget -c http://downloads.mesosphere.io/master/ubuntu/14.04/mesos_0.23.0-1.0.ubuntu1404_amd64.deb sudo dpkg -i mesos_0.23.0-1.0.ubuntu1404_amd64.deb
