aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
authorvmaffione <v.maffione@gmail.com>2017-04-14 09:18:41 +0000
committervmaffione <v.maffione@gmail.com>2017-04-14 09:18:41 +0000
commitca1d77df271defb08d5f73b54398491d1049c9f9 (patch)
treeb6cec9dc10c7a7677a6480c2d934e5e2917a59de /rumba/model.py
parent5c8c06ec2dc08fc326357395b3044874122de658 (diff)
parentcb4bfa4e632a70f786d4c27b0c02a47b774b9297 (diff)
downloadrumba-ca1d77df271defb08d5f73b54398491d1049c9f9.tar.gz
rumba-ca1d77df271defb08d5f73b54398491d1049c9f9.zip
Merge branch 'proxycmd' into 'master'
rumba: Add ProxyCommand for jFed See merge request !31
Diffstat (limited to 'rumba/model.py')
-rw-r--r--rumba/model.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rumba/model.py b/rumba/model.py
index 613a6be..9e6b40d 100644
--- a/rumba/model.py
+++ b/rumba/model.py
@@ -128,9 +128,10 @@ class NormalDIF(DIF):
# SSH Configuration
#
class SSHConfig:
- def __init__(self, hostname, port=22):
+ def __init__(self, hostname, port=22, proxycommand=None):
self.hostname = hostname
self.port = port
+ self.proxycommand = proxycommand
# A node in the experiment
#