aboutsummaryrefslogtreecommitdiff
path: root/rumba/prototypes/ouroboros.py
diff options
context:
space:
mode:
Diffstat (limited to 'rumba/prototypes/ouroboros.py')
-rw-r--r--rumba/prototypes/ouroboros.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py
index 2c16ea5..9cdd3c9 100644
--- a/rumba/prototypes/ouroboros.py
+++ b/rumba/prototypes/ouroboros.py
@@ -271,11 +271,6 @@ class Experiment(mod.Experiment):
python_cmd + " -m easy_install pip",
python_cmd + " -m pip install 'influxdb-client[ciso]'"]
- # Patch the influxDB install from my repository. Temporary until 1.20 is in PyPi
- cmds += ["git clone https://github.com/dstaesse/influxdb-client-python.git",
- "sudo cp influxdb-client-python/influxdb_client/client/influxdb_client.py" # no comma: concat!
- " ~/venv/lib/" + python_version + "/site-packages/influxdb_client/client/influxdb_client.py"]
-
# Clone the metrics exporter repo and get the exporter
cmds += ["git clone https://ouroboros.rocks/git/ouroboros-metrics",
"cp ouroboros-metrics/exporters-influxdb/pyExporter/oexport.py .",
@@ -474,7 +469,7 @@ class Experiment(mod.Experiment):
cmds.append('rm -rf /tmp/ouroboros || true')
cmds.append('kill -9 $(ps axjf | grep \'sudo irmd\' | grep -v grep | cut -f4 -d " ") || true')
else:
- cmds.append('killall -15 irmd || true')
+ cmds.append('killall -15 irmd')
logger.info("Killing Ouroboros...")
if isinstance(self.testbed, local.Testbed):