aboutsummaryrefslogtreecommitdiff
path: root/rumba/executors/ssh.py
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.
* fix for ssh not taking root into accountMarco Capitani2018-05-031-10/+5
|
* rumba: Update copyright on license headersSander Vrijders2018-04-231-4/+3
| | | | | This updates the copyright on the license headers to that it is extended to the current year.
* testbeds: Add docker testbedNick Aerts2018-03-201-0/+64
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.