aboutsummaryrefslogtreecommitdiff
path: root/rumba/prototypes/ouroboros.py
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@ugent.be>2017-11-15 13:52:25 +0100
committerDimitri Staessens <dimitri.staessens@ugent.be>2017-11-15 13:52:25 +0100
commitfce53a4bc0b26278e3e90278b79e12304004b1ba (patch)
tree78f7e2c8e7eb3980b1f318fae4d5d2df89fb4672 /rumba/prototypes/ouroboros.py
parent88e18d3e30d67681b0f6cf4a55c731255daa650b (diff)
downloadrumba-fce53a4bc0b26278e3e90278b79e12304004b1ba.tar.gz
rumba-fce53a4bc0b26278e3e90278b79e12304004b1ba.zip
prototypes: Update ouroboros install
The ouroboros install scripts were deprecated. This updates rumba to install ouroboros using the cmake and make install commands.
Diffstat (limited to 'rumba/prototypes/ouroboros.py')
-rw-r--r--rumba/prototypes/ouroboros.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py
index 7bbeaca..0a67e9b 100644
--- a/rumba/prototypes/ouroboros.py
+++ b/rumba/prototypes/ouroboros.py
@@ -51,9 +51,11 @@ class Experiment(mod.Experiment):
"libgcrypt20-dev", "libssl-dev"]
cmds = ["sudo apt-get install libprotobuf-c-dev --yes || true",
- "sudo rm -r ~/ouroboros || true"
- "git clone -b be git://ouroboros.ilabt.imec.be/ouroboros"
- "cd ~/ouroboros; sudo ./install_debug.sh /"]
+ "sudo rm -r ~/ouroboros || true",
+ "git clone -b be git://ouroboros.ilabt.imec.be/ouroboros " +
+ "~/ouroboros",
+ "cd ~/ouroboros && mkdir build && cd build && " +
+ "cmake -DCMAKE_BUILD_TYPE=Debug .. && sudo make install"]
for node in self.nodes:
ssh.aptitude_install(self.testbed, node, packages)