diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-28 15:33:26 +0200 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-28 15:33:26 +0200 |
commit | 41e472bd8fd5dc14c21aac0e5a0009a02e6ea95b (patch) | |
tree | de0e45d986acf872713e85d0992f5933bfa8e17b | |
parent | 3021a7c8501147975d2b773a1aabe7c766c44dd1 (diff) | |
download | rumba-41e472bd8fd5dc14c21aac0e5a0009a02e6ea95b.tar.gz rumba-41e472bd8fd5dc14c21aac0e5a0009a02e6ea95b.zip |
prototypes: rlite: add depmod
-rw-r--r-- | rumba/prototypes/rlite.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rumba/prototypes/rlite.py b/rumba/prototypes/rlite.py index b01f33f..a35f2f1 100644 --- a/rumba/prototypes/rlite.py +++ b/rumba/prototypes/rlite.py @@ -114,7 +114,9 @@ class Experiment(mod.Experiment): "protobuf-compiler libprotobuf-dev git --yes", "rm -rf ~/rlite", "cd ~; git clone https://github.com/vmaffione/rlite", - "cd ~/rlite && ./configure && make && sudo make install"] + "cd ~/rlite && ./configure && make && sudo make install", + "cd ~/rlite && sudo make depmod" + ] for node in self.nodes: self.execute_commands(node, cmds) |