diff options
author | Philip Hands <phil@hands.com> | 2016-07-20 15:02:25 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-20 15:56:13 +0200 |
commit | 1463aca603ae160da0ad51c8c218ac8efb790198 (patch) | |
tree | ecab3132bfd65d96a762250ca002ef5591736073 /cucumber/features/scripts | |
parent | 3cea100c594498946683e41129f76e206269fbed (diff) | |
download | jenkins.debian.net-1463aca603ae160da0ad51c8c218ac8efb790198.tar.xz |
lvc: uniquify VM's serial-port port, based on $executor_number
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'cucumber/features/scripts')
-rwxr-xr-x | cucumber/features/scripts/vm-execute | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cucumber/features/scripts/vm-execute b/cucumber/features/scripts/vm-execute index c2082177..79b6942b 100755 --- a/cucumber/features/scripts/vm-execute +++ b/cucumber/features/scripts/vm-execute @@ -12,7 +12,8 @@ def debug_log(*args) ; end class FakeVM def get_remote_shell_port - 1337 + # FIXME -- we really ought to be able to ask the vm to dynamically allocate the port, then tell us what it did, rather than this + LIBVIRT_REMOTE_SHELL_PORT end end |