Skip to content

Commit

Permalink
[FIXED JENKINS-9752] added virtual machine types : gui and sdl
Browse files Browse the repository at this point in the history
  • Loading branch information
choas committed Feb 26, 2012
1 parent cf9bf73 commit 104f4c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ public String getVirtualMachineName() {
}

/**
* @return type of virtual machine, can be headless or vrdp
* @return type of virtual machine, can be headless, vrdp, gui, or sdl
*/
public String getVirtualMachineType() {
return virtualMachineType;
Expand Down
Expand Up @@ -30,6 +30,8 @@
<select class="setting-input" name="virtualMachineType" value="${it.virtualMachineType}">
<f:option value="headless" selected="${it.virtualMachineType == 'headless'}">headless</f:option>
<f:option value="vrdp" selected="${it.virtualMachineType == 'vrdp'}">vrdp</f:option>
<f:option value="gui" selected="${it.virtualMachineType == 'gui'}">gui</f:option>
<f:option value="sdl" selected="${it.virtualMachineType == 'sdl'}">sdl</f:option>
</select>
</f:entry>

Expand Down

0 comments on commit 104f4c3

Please sign in to comment.