diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-28 15:24:16 +0200 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-28 15:24:16 +0200 |
commit | 3021a7c8501147975d2b773a1aabe7c766c44dd1 (patch) | |
tree | e04823ba534b63999ab4f1b9e1a8803c12c3ea71 | |
parent | 2e17296fb9db66b9832655137b1942fcc0c2b2a7 (diff) | |
download | rumba-3021a7c8501147975d2b773a1aabe7c766c44dd1.tar.gz rumba-3021a7c8501147975d2b773a1aabe7c766c44dd1.zip |
prototypes: rlite: add sudo commands
-rw-r--r-- | rumba/prototypes/rlite.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rumba/prototypes/rlite.py b/rumba/prototypes/rlite.py index 8a06b44..b01f33f 100644 --- a/rumba/prototypes/rlite.py +++ b/rumba/prototypes/rlite.py @@ -108,8 +108,8 @@ class Experiment(mod.Experiment): def install_prototype(self): logger.info("installing rlite on all nodes") - cmds = ["apt-get update", - "apt-get install g++ gcc cmake " + cmds = ["sudo apt-get update", + "sudo apt-get install g++ gcc cmake " "linux-headers-$(uname -r) " "protobuf-compiler libprotobuf-dev git --yes", "rm -rf ~/rlite", |