aboutsummaryrefslogtreecommitdiff
path: root/rumba/executors
Commit message (Collapse)AuthorAgeFilesLines
* testbeds: Abstract away use of http proxy serverSander Vrijders2018-06-281-10/+4
| | | | | | | | Certain testbeds use a proxy to access the outside world. Due to recent changes this was not working anymore. This takes a different approach to re-enable this. It simply adds the lines to /etc/profile after swap-in so that the proxy is added to every shell upon execution.
* executors: Fix fetching file with dockerSander Vrijders2018-06-071-3/+3
| | | | | Fetching a file with docker was not working properly, since path was called instead of os.path.
* executors: Make local executor more robustSander Vrijders2018-06-051-1/+4
| | | | | | This improves the behavior of the local executor. It will now stop when a command fails and will return the output of an executed command.
* testbeds: Allow locally fetching filesSander Vrijders2018-05-291-2/+2
| | | | | | This simply allows to locally fetch a file, which is handy for debugging purposes, for instance obtaining flow stats from the Ouroboros prototype.
* fix for ssh not taking root into accountMarco Capitani2018-05-031-10/+5
|
* rumba: Update copyright on license headersSander Vrijders2018-04-234-13/+9
| | | | | This updates the copyright on the license headers to that it is extended to the current year.
* testbeds: Add docker testbedNick Aerts2018-03-204-0/+225
This adds support for a testbed based on Docker containers running on the local host. Bridging the containers can be done using built-in Linux bridging or using OpenVSwitch bridges. A new resource 'executor' has been added to abstract away command execution on nodes on the testbed. Executors have been created for local command execution, docker exec based command execution and SSH-based command execution. This has also been changed in the prototypes to execute using the correct executor.