fix can't find system vm template on latest ubuntu 12.04, for devcloud

This commit is contained in:
Edison Su 2012-09-25 15:49:16 -07:00
parent ff738feacb
commit 4f764e6335
1 changed files with 5 additions and 1 deletions

View File

@ -74,7 +74,11 @@ public class XcpOssResource extends CitrixResourceBase {
@Override
protected String getGuestOsType(String stdType, boolean bootFromCD) {
return CitrixHelper.getXcpGuestOsType(stdType);
if (stdType.equalsIgnoreCase("Debian GNU/Linux 6(64-bit)")) {
return "Debian Squeeze 6.0 (64-bit)";
} else {
return CitrixHelper.getXcpGuestOsType(stdType);
}
}
protected VBD createPatchVbd(Connection conn, String vmName, VM vm) throws XmlRpcException, XenAPIException {