diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2017-11-15 13:52:25 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@ugent.be> | 2017-11-15 13:52:25 +0100 |
commit | fce53a4bc0b26278e3e90278b79e12304004b1ba (patch) | |
tree | 78f7e2c8e7eb3980b1f318fae4d5d2df89fb4672 | |
parent | 88e18d3e30d67681b0f6cf4a55c731255daa650b (diff) | |
download | rumba-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.
-rw-r--r-- | rumba/prototypes/ouroboros.py | 8 |
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) |