aboutsummaryrefslogtreecommitdiff
path: root/rumba/prototypes/rlite.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-04-29 15:37:54 +0200
committerVincenzo Maffione <v.maffione@gmail.com>2017-04-29 15:37:54 +0200
commitb9dca213b9f725ccf776b5f50a58bdd2b1586f8b (patch)
tree7cf7a16c370c7fcb948528e52173dfd552049d93 /rumba/prototypes/rlite.py
parent1e7215a18ea96fbba60bb5df4f33bb15a90d434e (diff)
downloadrumba-b9dca213b9f725ccf776b5f50a58bdd2b1586f8b.tar.gz
rumba-b9dca213b9f725ccf776b5f50a58bdd2b1586f8b.zip
prototypes: rlite: add temporary jfed-specific variables in install_prototype
Diffstat (limited to 'rumba/prototypes/rlite.py')
-rw-r--r--rumba/prototypes/rlite.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rumba/prototypes/rlite.py b/rumba/prototypes/rlite.py
index d35c5d5..625668d 100644
--- a/rumba/prototypes/rlite.py
+++ b/rumba/prototypes/rlite.py
@@ -117,11 +117,11 @@ class Experiment(mod.Experiment):
def install_prototype(self):
logger.info("installing rlite on all nodes")
cmds = ["sudo apt-get update",
- "sudo apt-get install g++ gcc cmake "
+ "export https_proxy=\"https://proxy.atlantis.ugent.be:8080\"; sudo -E apt-get install g++ gcc cmake "
"linux-headers-$(uname -r) "
"protobuf-compiler libprotobuf-dev git --yes",
"rm -rf ~/rlite",
- "cd ~; git clone https://github.com/vmaffione/rlite",
+ "cd ~; export https_proxy=\"https://proxy.atlantis.ugent.be:8080\"; git clone https://github.com/vmaffione/rlite",
"cd ~/rlite && ./configure && make && sudo make install",
"cd ~/rlite && sudo make depmod"
]